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