import { ReactNode } from 'react'; export declare type Options = { [key: string]: any; parentFieldId: string; valueFieldId: string; labelFieldId: string; iconFieldId: string; imageFieldId: string; badgeFieldId: string; badgeColorFieldId: string; hasChildrenFieldId: string; }; export interface Props { children?: ReactNode; disabled?: boolean; format?: string; key?: string; options?: Options; rest?: Record; [key: string]: unknown; } /** * Компонент TreeNode * @param {object} options - параметры узла * @param disabled * @param key * @param format * @param children * @param rest */ export declare function TreeNode({ options, disabled, key, format, children, ...rest }: Props): JSX.Element;