import { SvelteComponent } from "svelte"; import type { Rotation } from "../types.js"; declare const __propDef: { props: { rotation?: Rotation; size?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SearchIconProps = typeof __propDef.props; export type SearchIconEvents = typeof __propDef.events; export type SearchIconSlots = typeof __propDef.slots; /** [See Docs](https://geist-ui-svelte.dev/components/icons?icon=search) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class SearchIcon extends SvelteComponent { } export {};