/** * The target format for the table blocks. Supported values: * * `markdown`: Convert table to Markdown format * * `html`: Convert table to HTML format */ export declare const ParseConfigBlockOptionsTablesTargetFormat: { readonly Markdown: "markdown"; readonly Html: "html"; }; export type ParseConfigBlockOptionsTablesTargetFormat = (typeof ParseConfigBlockOptionsTablesTargetFormat)[keyof typeof ParseConfigBlockOptionsTablesTargetFormat] | string;