export interface Tree {
    [name: string]: any;
}
export declare function validate(query: string): void;
export declare function parse(query: string): Tree | null;
export declare function getTables(query: string): string[] | null;
export declare function getColumns(query: string): string[] | null;
