import { SvelteComponentTyped } from "svelte"; import type { IMeetingData } from '../interfaces/IMeetingData'; declare const __propDef: { props: { [x: string]: any; meeting: IMeetingData; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CallVideoProps = typeof __propDef.props; export declare type CallVideoEvents = typeof __propDef.events; export declare type CallVideoSlots = typeof __propDef.slots; export default class CallVideo extends SvelteComponentTyped { } export {};