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