import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { stream: MediaStream; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type VideoProps = typeof __propDef.props; export declare type VideoEvents = typeof __propDef.events; export declare type VideoSlots = typeof __propDef.slots; export default class Video extends SvelteComponentTyped { } export {};