import { PartitionByClause } from "../models/Clause";
import { Lexeme } from "../models/Lexeme";
export declare class PartitionByParser {
    static parse(query: string): PartitionByClause;
    static parseFromLexeme(lexemes: Lexeme[], index: number): {
        value: PartitionByClause;
        newIndex: number;
    };
}
