/** @typedef {typeof __propDef.props} EyeOffProps */ /** @typedef {typeof __propDef.events} EyeOffEvents */ /** @typedef {typeof __propDef.slots} EyeOffSlots */ export default class EyeOff extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type EyeOffProps = typeof __propDef.props; export type EyeOffEvents = typeof __propDef.events; export type EyeOffSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};