import React from "react"; import type { DataTableConfig, DataTableServerState } from "../../../types"; export interface DataTableProps { data: T[]; isLoading?: boolean; error?: string | null; config: DataTableConfig; server?: DataTableServerState; } export declare function DataTable({ data, isLoading, error, config, server }: DataTableProps): React.JSX.Element; //# sourceMappingURL=DataTable.d.ts.map