import type { TreeTableRow } from "./TreeTable";
type RowProps = {
    row: TreeTableRow;
    level: number;
    parentId: string | null;
    onAddSibling: (parentId: string | null, index: number) => void;
    onAddChild: (id: string) => void;
    onRowChange: (keyId: string, field: keyof TreeTableRow, value: string | boolean) => void;
    onDeleteRow: (id: string) => void;
};
declare function Row({ row, level, parentId, onAddSibling, onAddChild, onRowChange, onDeleteRow }: RowProps): import("react/jsx-runtime").JSX.Element;
export default Row;
//# sourceMappingURL=Row.d.ts.map