export interface DataTableColumn { title?: string; field?: string; width: number; hAlign?: string; align?: string; hidden?: boolean; fixed?: any; sortable?: boolean; multipleFilter: boolean; filter?: any; filterMethod?: (value: any, row: any) => boolean; className?: string; edit?: string; media?: object; formatter?: any; } export declare const convertColumns: (columns: any, direction: any) => any[]; export declare const deepCopy: (data: any) => any;