/** @typedef {typeof __propDef.props} IconCodeProps */ /** @typedef {typeof __propDef.events} IconCodeEvents */ /** @typedef {typeof __propDef.slots} IconCodeSlots */ export default class IconCode extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type IconCodeProps = typeof __propDef.props; export type IconCodeEvents = typeof __propDef.events; export type IconCodeSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};