import { FieldPath, FieldPathValue, FieldValues, Validate } from 'react-hook-form'; import { PageAsyncMultiSelectProps } from '../../PageInputs/PageAsyncMultiSelect'; import { PageFormGroupProps } from './PageFormGroup'; export type PageFormAsyncMultiSelectProps = FieldPath, ValueT = FieldPathValue> = { name: TFieldName; validate?: Validate, TFieldValues> | Record, TFieldValues>>; isReadOnly?: boolean; } & Pick, 'id' | 'placeholder' | 'footer' | 'isDisabled' | 'queryOptions' | 'queryPlaceholder' | 'queryErrorText' | 'disableClearChips' | 'disableClearSelection' | 'onBrowse' | 'queryLabel' | 'compareOptionValues'> & Pick; export declare function PageFormAsyncMultiSelect = FieldPath>(props: PageFormAsyncMultiSelectProps): import("react/jsx-runtime").JSX.Element;