import { RegisterOptions } from 'react-hook-form'; import { DisableMode } from '../../formElements/common/common'; import { CreatableRecommenationSingleSelectValue } from './CreatableRecommenationSingleSelect'; export interface CreatableRecommenationSingleSelectFieldProps { createLabel: string; defaultValue: CreatableRecommenationSingleSelectValue; name: string; isDisabled?: DisableMode; placeholder?: string; registerOptions?: RegisterOptions; style?: React.CSSProperties; onCreateOption: () => void; } declare const CreatableRecommenationSingleSelectField: ({ name, createLabel, registerOptions, defaultValue, placeholder, isDisabled, style, onCreateOption, }: CreatableRecommenationSingleSelectFieldProps) => import("react/jsx-runtime").JSX.Element; export default CreatableRecommenationSingleSelectField;