import { MultiSelectFieldHandle, MultiSelectFieldProps } from './types'; /** * MultiSelectField component for selecting multiple options from a searchable dropdown. * * Features: * - Multiple selection with chip display * - Search and filtering capabilities (disable with `disableSearch`) * - Lazy loading with pagination (page, offset, or group modes) * - Optional "Select All" functionality * - Optional "Select Filtered" functionality (selects options matching current search) * - Sticky positioning for Select All / Select Filtered items * - Supports both popover and dialog display modes * - Adaptive display based on device (mobile uses dialog) * - Cache support for loadOptions results * - Single row mode to restrict height (singleRow prop) * - Chip count limiting (maxChips prop) * - Full accessibility support with ARIA attributes * - Controlled selection state */ export declare const MultiSelectField: import('react').ForwardRefExoticComponent>;