import { type Handle } from "mdast-util-to-markdown";
export interface ToMarkdownOptions {
    aliasDivider?: string;
}
export declare function toMarkdown(opts?: ToMarkdownOptions): {
    unsafe: {
        character: string;
        inConstruct: ("label" | "phrasing" | "reference")[];
    }[];
    handlers: {
        wikiLink: Handle;
    };
};
