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