UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

16 lines 454 B
export type TreeTableRow = { keyId: string; id: string; title: string; statement: string; type: string; required: boolean; metadata?: TreeTableRow[]; }; type TreeTableProps = { value?: TreeTableRow[]; onChange?: (rows: TreeTableRow[]) => void; }; declare function TreeTable({ value, onChange }: TreeTableProps): import("react/jsx-runtime").JSX.Element; export default TreeTable; //# sourceMappingURL=TreeTable.d.ts.map