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