export declare type SortType = 'none' | 'asc' | 'desc'; export interface TableSortProps { sort?: SortType; }