/** @typedef {typeof __propDef.props} BiQuoteProps */ /** @typedef {typeof __propDef.events} BiQuoteEvents */ /** @typedef {typeof __propDef.slots} BiQuoteSlots */ export default class BiQuote extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiQuoteProps = typeof __propDef.props; export type BiQuoteEvents = typeof __propDef.events; export type BiQuoteSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};