import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * * Brand name * @default '' * */ name?: string; /** * * Welcome title * @default 'Here are your questions' * */ title?: string; /** * * Question * @default 'Here are your questions' * */ question?: string; /** * * Brand logo url * @default 'https://logo.clearbit.com/vouchfor.com?size=260' * */ logo?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchRecorderPreviewProps = typeof __propDef.props; export type VouchRecorderPreviewEvents = typeof __propDef.events; export type VouchRecorderPreviewSlots = typeof __propDef.slots; export default class VouchRecorderPreview extends SvelteComponentTyped { } export {};