import { ReactNode } from "react"; import { Column } from "./col"; interface RowProps { columns: Column[]; record: any; bordered?: boolean; justified?: boolean; index: number; rowKey: string; onRow?: (record: any, index: number) => any; expanded: boolean; canExpand?: boolean; expandRowRender?: (record: RecordType, index: number) => ReactNode; onToggleExpand: (key: string) => void; } export declare const Row: (props: RowProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=row.d.ts.map