export declare enum SortStatus { INCREASING = "INCREASING", DECREASING = "DECREASING" } export interface ISort { viewName: string; tableName: string; sort: SortStatus; }