import { TableProps } from '../types'; export interface IDataTableMockData { id: string; label: string; disabled?: boolean; name: string | JSX.Element; other: string; action?: string; date?: Date; status?: "active" | "inactive" | "awc" | "in call"; hexValue: string; level?: "low" | "medium" | "high"; hasOnCallBeeper?: boolean; longText?: string; } export declare const FilledFields: TableProps;