import type { PropType } from 'vue'; import type { IPlayerOptions } from 'xgplayer'; export declare const props: { /** * @link https://v2.h5player.bytedance.com/config */ defaultOptions: { type: PropType; default: () => {}; }; url: { type: StringConstructor; default: string; }; autoplay: { type: BooleanConstructor; default: boolean; }; }; export declare const emits: {};