declare const _default: {
    name: string;
    props: {
        src: {
            type: StringConstructor;
            required: boolean;
        };
        config: {
            type: ObjectConstructor;
            required: boolean;
        };
        width: {
            type: NumberConstructor;
            default: number;
        };
        height: {
            type: NumberConstructor;
            default: number;
        };
        autoplay: {
            type: BooleanConstructor;
            default: boolean;
        };
        muted: {
            type: BooleanConstructor;
            default: boolean;
        };
        controls: {
            type: BooleanConstructor;
            default: boolean;
        };
        className: {
            type: StringConstructor;
            default: string;
        };
    };
    emits: string[];
    setup(props: any, { emit }: {
        emit: any;
    }): {
        containerRef: any;
        play: () => any;
        pause: () => any;
        getCurrentTime: () => any;
        setCurrentTime: (time: number) => any;
    };
    render(): any;
};
export default _default;
