/** @typedef {typeof __propDef.props} ImageOffProps */ /** @typedef {typeof __propDef.events} ImageOffEvents */ /** @typedef {typeof __propDef.slots} ImageOffSlots */ export default class ImageOff extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type ImageOffProps = typeof __propDef.props; export type ImageOffEvents = typeof __propDef.events; export type ImageOffSlots = 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 {};