/** @typedef {typeof __propDef.props} BlockQuoteProps */ /** @typedef {typeof __propDef.events} BlockQuoteEvents */ /** @typedef {typeof __propDef.slots} BlockQuoteSlots */ export default class BlockQuote extends SvelteComponentTyped<{ data: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } 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: { data: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};