type Node = {
    type: string;
    [key: string]: any;
};
export declare class MrkdwnCompiler {
    constructor(node: Node);
    compile(): string;
    private codes;
    private lists;
    private root;
    private visitors;
    private block;
    private escape;
    private markup;
    private renderCodeBlock;
    private visit;
}
export default function remarkSlackStringifier(mdast: Node): string;
export {};
