/** @typedef {typeof __propDef.props} VideoProps */ /** @typedef {typeof __propDef.events} VideoEvents */ /** @typedef {typeof __propDef.slots} VideoSlots */ export default class Video extends SvelteComponentTyped<{ properties: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } export type VideoProps = typeof __propDef.props; export type VideoEvents = typeof __propDef.events; export type VideoSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { properties: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};