export interface SearchBarProps { /** * Indicates loading activity (for example async request) that should prevent search */ isLoading?: boolean; /** * Sets a visual indicator that the search is active */ isWorking?: boolean; /** * The search term */ modelValue?: string; /** * Placeholder text for the input */ placeholder?: string; /** * Label for search bar */ label?: string; /** * Text below the input */ hintText?: string; } declare var __VLS_44: {}; type __VLS_Slots = {} & { hint?: (props: typeof __VLS_44) => any; }; declare const __VLS_base: import("vue").DefineComponent any; "update:model-value": (searchTerm: string) => any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onSearch?: ((searchTerm: string) => any) | undefined; "onUpdate:model-value"?: ((searchTerm: string) => any) | undefined; }>, { label: string; isLoading: boolean; modelValue: string; hintText: string; placeholder: string; isWorking: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };