import { ReactNode } from "react"; interface Node { id: number; title: string; children?: Node[]; } interface Props { nodes: Node[]; showIcon?: boolean; showItemsNumber?: boolean; showBorder?: boolean; ParentIcon?: ReactNode; ChildIcon?: ReactNode; showCheckbox?: boolean; } export interface keepTreeTheme { base: string; list: { base: string; hasChild: { on: string; off: { hasIcon: { on: string; off: string; }; }; }; }; caretIcon: { base: string; icon: string; }; showChildren: { base: string; on: string; off: string; }; nestedOrderList: { on: { base: string; border: { on: string; off: string; }; }; off: string; }; } export declare const Tree: React.FC; export {};