import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * URL for src attribute passed to iframe * @default */ iframesrc?: string; /** * URL to allow camera, microphone, and dispaly-capture permissions * @default */ allowurl?: string; /** * Controls some styles, mostly for backwards compatibility * @default false */ embedded?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type VouchRecorderProps = typeof __propDef.props; export type VouchRecorderEvents = typeof __propDef.events; export type VouchRecorderSlots = typeof __propDef.slots; export default class VouchRecorder extends SvelteComponentTyped { } export {};