/** @typedef {typeof __propDef.props} SearchIconProps */ /** @typedef {typeof __propDef.events} SearchIconEvents */ /** @typedef {typeof __propDef.slots} SearchIconSlots */ export default class SearchIcon extends SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}> { } export type SearchIconProps = typeof __propDef.props; export type SearchIconEvents = typeof __propDef.events; export type SearchIconSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: undefined; bindings?: undefined; }; export {};