/** @typedef {typeof __propDef.props} BlockquoteProps */ /** @typedef {typeof __propDef.events} BlockquoteEvents */ /** @typedef {typeof __propDef.slots} BlockquoteSlots */ export default class Blockquote extends SvelteComponentTyped<{ attribution?: string; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type BlockquoteProps = typeof __propDef.props; export type BlockquoteEvents = typeof __propDef.events; export type BlockquoteSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attribution?: string; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};