import type { QueryProps } from '../../../shared/types'; import type { TableColumn } from '../../visuals/Table'; interface DataGridProps { dataGridQuery: QueryProps; columns: TableColumn[]; searchInputPlaceHolder?: string; searchKey: string; title?: string; } declare const DataGrid: ({ dataGridQuery, columns, searchInputPlaceHolder, searchKey, title, }: DataGridProps) => import("react/jsx-runtime").JSX.Element; export default DataGrid;