import React from 'react'; import type { ControllerRenderProps, FieldValues } from 'react-hook-form'; export type FormSelectSelectMenuProps = { menuSearchPlaceholder: string; searchValue: string; onSearchChange: (value: string) => void; isLoading?: boolean; menuHasNoOptionsText: boolean; menuNoOptionsText?: React.ReactNode; optionsWithoutEmptyValue: any[]; getOptionValue?: (option: any) => string; getOptionLabel?: (option: any) => string; renderOption?: (option: any) => React.ReactNode; isOptionEqualToValue?: (option: any, value: any) => boolean; menuHasSelectedCheckMark: boolean; valueOnly: boolean; getOptionId: (option: any) => string; field: ControllerRenderProps; }; export declare function FormSelectSelectMenu({ menuSearchPlaceholder, searchValue, onSearchChange, isLoading, menuHasNoOptionsText, menuNoOptionsText, optionsWithoutEmptyValue, getOptionValue, getOptionLabel, renderOption, isOptionEqualToValue, menuHasSelectedCheckMark, valueOnly, getOptionId, field, }: Readonly): React.JSX.Element;