import type { ValuesOf } from '../../Types/ValuesOf'; /** * `SearchTriggerMode` - The `SearchTriggerMode` object is used to describe the different types of search trigger modes. */ export declare const SearchTriggerMode: { /** * 'Input' mode triggers the search as the user types each character. */ readonly Input: "input"; /** * 'Delay' mode triggers the search after the user stops typing, with a predefined delay. */ readonly Delay: "delay"; /** * 'Enter' mode triggers the search when the user presses the Enter key. */ readonly Enter: "enter"; }; /** * @public */ export type SearchTriggerMode = ValuesOf; //# sourceMappingURL=SearchTriggerMode.d.ts.map