import { SvelteComponent } from "svelte"; import { type IconSource } from '@steeze-ui/svelte-icon'; import type { IconTheme } from './types.ts'; declare const __propDef: { props: { label?: string | undefined; icon?: IconSource | string | undefined; iconTheme?: IconTheme | undefined; }; events: { clear: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type TagSearchProps = typeof __propDef.props; export type TagSearchEvents = typeof __propDef.events; export type TagSearchSlots = typeof __propDef.slots; export default class TagSearch extends SvelteComponent { } export {};