export interface DataTableLabels { noData: string; rowsPerPage: string; of: string; previousPage: string; nextPage: string; } export interface DataTableProps { title?: string; data: Record[]; columns?: string[]; loading?: boolean; error?: string; maxRows?: number; pageSizeOptions?: number[]; labels?: Partial; } /** A source-agnostic, sortable and paginated dashboard table. */ export declare function DataTable({ title, data, columns: columnsProp, loading, error, maxRows, pageSizeOptions, labels: labelOverrides, }: DataTableProps): import("react").JSX.Element; //# sourceMappingURL=DataTable.d.ts.map