/**
 * Represents sort direction that applied as parameter by {@link SortParameter} class.
 */
export declare enum SortDirection {
    /**
     * Ascending sort order.
     */
    Asc = 0,
    /**
     * Descending sort order.
     */
    Desc = 1
}
export type SortDirectionStr = 'Asc' | 'Desc';
/**
 * Represents sorting parameter applied to the server request by {@link RTSortingsService}.
 */
export interface SortParameter {
    /**
     * Sort direction.
     */
    direction: SortDirection;
    /**
     * Name of the field by which sorting must be performed.
     */
    fieldName: string;
}
//# sourceMappingURL=sort-parameter.d.ts.map