import type { TMapHovered, TMapPressed } from 'refun'; export declare type TChildItem = { name: string; propPath: readonly string[]; isActive: boolean; isRequired: boolean; onChange: (propPath: readonly string[], propValue: any) => void; } & TMapHovered & TMapPressed; export declare const ChildItem: import("refun").TComponent;