export declare class SortProperty {
    name: string;
    sortDescending: boolean;
    constructor(name: string, sortDescending: boolean);
}
