import { SelectProps } from 'tdesign-react/esm'; import { ReactNode } from 'react'; export interface SelectAsyncProps extends SelectProps { url: string; query?: Record; pagination?: boolean; optionValue?: string; optionLabel?: string; optionRender?: (item: Record) => ReactNode; format?: (value: any) => any; } export declare const SelectAsync: ({ url, query, pagination, optionValue, optionLabel, optionRender, format, ...props }: SelectAsyncProps) => import("react/jsx-runtime").JSX.Element;