copper-ui
Version:
Modern React UI components library with TypeScript support, built on top of Ant Design
11 lines • 453 B
TypeScript
import { ReactNode } from '../../../../../node_modules/.pnpm/react@19.1.1/node_modules/react';
type ExpandedRowProps = {
colSpan: number;
animated?: boolean;
expanded: boolean;
rowId: string;
children: ReactNode;
};
declare const ExpandedRow: ({ colSpan, animated, expanded, rowId, children }: ExpandedRowProps) => import("react/jsx-runtime").JSX.Element | null;
export default ExpandedRow;
//# sourceMappingURL=expanded-row.d.ts.map