export declare type TValueDropdownProps = { propPath: readonly string[]; propValue: any; propPossibleValues: readonly any[]; isPropRequired: boolean; printValue?: (value: any) => string; onChange: (propPath: readonly string[], selectedValue: any) => void; }; export declare const ValueDropdown: import("refun").TComponent;