import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: { default: { click: () => void; }; answer: {}; }; }; export type QuestionAndAnswerProps = typeof __propDef.props; export type QuestionAndAnswerEvents = typeof __propDef.events; export type QuestionAndAnswerSlots = typeof __propDef.slots; export default class QuestionAndAnswer extends SvelteComponentTyped { } export {};