import { IOption } from './IOption'; export declare type ITableData = Record; export interface IColumnDetails { columnName: string; columnHeader: string; columnType: 'string' | 'number' | 'currency' | 'date' | 'photo' | 'decimals' | 'days' | 'months' | 'numberInc' | 'multidropdown' | 'datepicker' | 'dropDown' | 'controls' | 'boolean'; isRequired: boolean; options?: IOption[]; multiple?: boolean; key?: string; placeholder?: string; minLength?: number; maxLength?: number; hidden?: boolean; inputSize?: 'small' | 'medium' | 'large'; cloneable?: boolean; baseModel?: string | boolean | IOption; exportToCSV?: boolean; }