export interface FilterToolbarSearchProps extends Omit, "type" | "onChange"> { /** Callback fired when search value changes (debounced) */ onSearch?: (value: string) => void; /** Debounce delay in milliseconds (default: 300ms) */ debounceMs?: number; /** Custom width for the search input. Defaults to 200px on desktop, full width on mobile */ width?: string | number; } /** * FilterToolbarSearch - A search input component with built-in debouncing. */ export declare const FilterToolbarSearch: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=filter-toolbar-search.d.ts.map