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