export interface ITableHeader { id: number; name: string; key: string; type: string; status?: boolean; show?: boolean; width?: string; headerDisplay?: boolean; headerDefault?: boolean; sortable?: boolean; } export interface ITableData { id: number; name: string; key: string; selected: boolean; default?: boolean; disableRadio?: boolean; disableCheckbox?: boolean; sortable?: string; customActions?: CustomActions[]; } export interface CustomActions { id: string; actionKey: string; iconName: string; }