import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form'; import { PageSingleSelectProps } from '../../PageInputs/PageSingleSelect'; import { PageFormGroupProps } from './PageFormGroup'; export type PageFormSingleSelectProps = FieldPath, ValueT = FieldPathValue> = { name: TFieldName; validate?: Validate, TFieldValues> | Record, TFieldValues>>; isReadOnly?: boolean; defaultValue?: FieldPathValue; } & Pick, 'id' | 'placeholder' | 'options' | 'footer' | 'isDisabled' | 'isRequired' | 'disableSortOptions'> & Pick; export declare function PageFormSingleSelect = FieldPath>(props: PageFormSingleSelectProps): import("react/jsx-runtime").JSX.Element;