export declare type SortDirection = 'asc' | 'desc' | ''; export declare type ArrowViewState = SortDirection | 'hint' | 'active'; export interface Sortable { id: string; start: 'asc' | 'desc'; } export interface Sort { active: string; direction: SortDirection; }