import { ReactNode, CSSProperties } from 'react'; export type InnerRowItemData = { value: string; width?: number; }; export type RowItemData = { [key: string]: InnerRowItemData; }; export type TableRowProps = { data: T; items?: RowItemData; notifyParent?: (value: any) => void; getRowItemCell?: (item: string, itemData: T) => ReactNode; rowControllerProps?: Record; style?: CSSProperties; }; //# sourceMappingURL=type.d.ts.map