declare var _default: {
    Program: (program: any) => any;
    BlockStatement: (block: any) => void;
    MustacheStatement: (rawMustache: any) => {
        type: string;
        path: any;
        params: any;
        hash: any;
        escaped: boolean;
        loc: {
            source: any;
            start: any;
            end: any;
        };
    };
    ContentStatement: (content: any) => void;
    CommentStatement: (rawComment: any) => {
        type: string;
        value: any;
        loc: {
            source: any;
            start: any;
            end: any;
        };
    };
    PartialStatement: (partial: any) => never;
    PartialBlockStatement: (partialBlock: any) => never;
    Decorator: (decorator: any) => never;
    DecoratorBlock: (decoratorBlock: any) => never;
    SubExpression: (sexpr: any) => any;
    PathExpression: (path: any) => any;
    Hash: (hash: any) => any;
    StringLiteral: () => void;
    BooleanLiteral: () => void;
    NumberLiteral: () => void;
    UndefinedLiteral: () => void;
    NullLiteral: () => void;
};
export default _default;
