interface ToMarkdownOptions {
    aliasDivider?: string;
}
declare function toMarkdown(opts?: ToMarkdownOptions): {
    unsafe: {
        character: string;
        inConstruct: string[];
    }[];
    handlers: {
        wikiLink: (node: any, _: any, context: any) => string;
    };
};
export { toMarkdown };
