import { SvelteComponentTyped } from "svelte"; import type { Environment } from '../internal/environment'; declare const __propDef: { props: { [x: string]: any; vouchid?: string; apikey?: string; showcaption?: boolean; showwatermark?: boolean; autoplay?: boolean; autoplaynext?: boolean; questions?: string; displayname?: string; shape?: string; responsive?: boolean; src?: string; alt?: string; href?: string; preview?: boolean; controls?: string; preload?: 'auto' | 'none'; env?: Environment; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchEmbedThumbnailProps = typeof __propDef.props; export type VouchEmbedThumbnailEvents = typeof __propDef.events; export type VouchEmbedThumbnailSlots = typeof __propDef.slots; export default class VouchEmbedThumbnail extends SvelteComponentTyped { } export {};