/** @typedef {typeof __propDef.props} ParagraphProps */ /** @typedef {typeof __propDef.events} ParagraphEvents */ /** @typedef {typeof __propDef.slots} ParagraphSlots */ export default class Paragraph extends SvelteComponentTyped<{ settings: any; properties: any; size?: string | undefined; css?: string | undefined; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ParagraphProps = typeof __propDef.props; export type ParagraphEvents = typeof __propDef.events; export type ParagraphSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { settings: any; properties: any; size?: string | undefined; css?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};