import type { Block } from "./block/index.d.ts";
export interface ParserOption {
    hasTitle?: boolean;
}
export declare type Page = Block[];
export declare const parse: (input: string, opts?: ParserOption) => Page;
export declare const getTitle: (input: string) => string;
//# sourceMappingURL=parse.d.ts.map
