import type * as React from 'react'; import type { SelectType } from '../components/Select/Select'; export type Option = { value?: unknown; label?: React.ReactNode; [index: string]: any; }; export type GetOptionLabel = (option: O) => O['label']; export type FilterFn = (inputValue: string, option: O, getOptionsLabel?: GetOptionLabel) => boolean; export type SortFn = (optionA: O, optionB: O, inputValue: string) => number; export declare function defaultFilterFn(...args: Parameters>): ReturnType>; export declare const getFormFieldModeFromSelectType: (selectType?: SelectType) => "default" | "plain"; //# sourceMappingURL=select.d.ts.map