export interface DokuActiveSorter {
    direction: '' | 'ascending' | 'descending';
    column: string;
}
