export declare const Lexer: undefined;
export declare const ParserRules: ({
    name: string;
    symbols: string[];
    postprocess?: undefined;
} | {
    name: string;
    symbols: RegExp[];
    postprocess?: undefined;
} | {
    name: string;
    symbols: (string | RegExp)[];
    postprocess: (d: any) => any;
} | {
    name: string;
    symbols: {
        literal: string;
    }[];
    postprocess?: undefined;
} | {
    name: string;
    symbols: (string | {
        literal: string;
    })[];
    postprocess: (d: any) => any;
})[];
export declare const ParserStart = "SORT";
