import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form'; import { PageAsyncSingleSelectProps } from '../../PageInputs/PageAsyncSingleSelect'; import { PageFormGroupProps } from './PageFormGroup'; export type PageFormAsyncSingleSelectProps = FieldPath, ValueT = FieldPathValue> = { name: TFieldName; validate?: Validate, TFieldValues> | Record, TFieldValues>>; isReadOnly?: boolean; onChange?: (value: string) => void; } & Pick, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'isRequired' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText' | 'onBrowse' | 'queryLabel' | 'writeInOption'> & Pick; export declare function PageFormAsyncSingleSelect = FieldPath>(props: PageFormAsyncSingleSelectProps): import("react/jsx-runtime").JSX.Element;