import { type TableDataSource } from '@mezzanine-ui/core/table'; import type { DraggableProvided } from '@hello-pangea/dnd'; export interface TableRowProps { className?: string; draggableProvided?: DraggableProvided; record: T; rowIndex: number; style?: React.CSSProperties; } declare const TableRowInner: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const TableRow: typeof TableRowInner; export {};