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