import { ReactNode } from 'react'; import { Column, ColumnId, ColumnStore, Row, RowConfig, RowEvents } from '../../common'; type Props = { row: Row; columns: Column[]; columnStore: ColumnStore; groupOrder: ColumnId[]; selectable: boolean; idx: number; config?: Partial; border?: boolean; height: number; level: number; fullWidth?: boolean; containerWidth?: number; events?: Partial; loading?: boolean; skeleton?: ReactNode; isTopFixed?: boolean; isBottomFixed?: boolean; isLastRow?: boolean; onClick?: () => void; }; export default function RowContainer({ row, columns, columnStore, groupOrder, selectable, config, idx, border, height, level, events, fullWidth, containerWidth, loading, skeleton, isTopFixed, isBottomFixed, isLastRow, onClick, }: Props): import("react/jsx-runtime").JSX.Element; export {};