export declare enum SortDirection { ASC = "ASC", DESC = "DESC" } export interface FilterColumn { accessor: keyof T; value: any; } export declare type GenericTableRow = T & { id?: string; checked?: boolean; expanded?: boolean; indeterminate?: boolean; };