export declare const createParser: (input: string) => any; export declare const createPrestoSyntaxTree: (input: string) => any; export declare const parsePrestoSql: (input: string) => { strings: string[]; tables: string[]; columns: string[]; subQueries: string[]; tableAlias: string[]; }; export declare const getErrorsPrestoSql: (input: string) => import("./errors-listener").IErrorAnnotation[];