
export declare class SelectParser {
    splitAsync(str: string): Promise<string[]>;
    split(str: string): string[];
}

export declare class OrderByParser {
    splitAsync(str: string): Promise<string[]>;
    split(str: string): string[];
}

export declare class GroupByParser {
    splitAsync(str: string): Promise<string[]>;
    split(str: string): string[];
}