import type { Slots } from 'vue'; export type SearchLoadFn = (data?: any) => Promise | void; export type SearchOptionsInput = { slots?: Slots; icon?: boolean; iconPosition?: 'start' | 'end'; iconClass?: string; load?: SearchLoadFn; busy?: boolean; meta?: Record; }; export type SearchSlotProps = Omit; //# sourceMappingURL=type.d.ts.map