/** @typedef {typeof __propDef.props} EyeIconProps */ /** @typedef {typeof __propDef.events} EyeIconEvents */ /** @typedef {typeof __propDef.slots} EyeIconSlots */ export default class EyeIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type EyeIconProps = typeof __propDef.props; export type EyeIconEvents = typeof __propDef.events; export type EyeIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};