import { SetRequired } from 'type-fest'; import { PageAsyncQueryErrorText, PageAsyncSelectOptionsFn } from './PageAsyncSelectOptions'; import { PageSelectOption } from './PageSelectOption'; import { PageSingleSelectProps } from './PageSingleSelect'; export interface PageAsyncSingleSelectProps extends SetRequired, 'options'>, 'queryLabel'> { queryOptions: PageAsyncSelectOptionsFn; queryPlaceholder?: string; queryErrorText?: PageAsyncQueryErrorText; onBrowse?: () => void; writeInOption?: (query: string) => PageSelectOption; } export declare function PageAsyncSingleSelect(props: PageAsyncSingleSelectProps): import("react/jsx-runtime").JSX.Element;