import { SERIALIZATION_FORMAT } from './format'; import * as AST from './ast/documentAst'; export declare function parse(src: string, filePath?: string): { children: AST.Content[]; }; export declare function printNode(mdxBlockNode: AST.Content): string; export declare function print(normalizedFormat: { children: AST.Content[]; }, options?: { sourceFormat?: SERIALIZATION_FORMAT; embeddedFormat?: SERIALIZATION_FORMAT; filePath?: string; }): string;