import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { error: string; restart?: () => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchEmbedErrorMessageProps = typeof __propDef.props; export type VouchEmbedErrorMessageEvents = typeof __propDef.events; export type VouchEmbedErrorMessageSlots = typeof __propDef.slots; export default class VouchEmbedErrorMessage extends SvelteComponentTyped { } export {};