import { type ChangeEvent, type ReactNode } from 'react'; import type { DataGridRowOptions } from '../types'; export type DataGridRowProps> = { keyId: keyof TData; row: TData; activeRowId?: string; selectable?: boolean; selectedRows?: TData[]; options?: DataGridRowOptions; children: ReactNode; onSelectRow: (row: TData) => (event: ChangeEvent) => void; onRowClick?: (row: TData) => void; }; export declare const DataGridRow: >({ selectable, children, ...props }: DataGridRowProps) => JSX.Element;