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