export declare const VideoType: {
    readonly WebM: "webm";
    readonly MP4: "mp4";
};
export type VideoTypeType = (typeof VideoType)[keyof typeof VideoType];
