export declare class SortSpec {
    private attribute;
    private positiveDirection;
    constructor(attribute: string, positiveDirection?: boolean);
    getAttribute(): string;
    getPositiveDirection(): boolean;
}
