import { z } from 'zod';

declare const VIDEO_SRT_READY_EVENT = "video/srt-ready";
type VideoSrtReady = {
    name: typeof VIDEO_SRT_READY_EVENT;
    data: VideoSrtReadyEvent;
};
declare const VideoSrtReadyEventSchema: z.ZodObject<{
    videoResourceId: z.ZodString;
}, "strip", z.ZodTypeAny, {
    videoResourceId: string;
}, {
    videoResourceId: string;
}>;
type VideoSrtReadyEvent = z.infer<typeof VideoSrtReadyEventSchema>;

export { VIDEO_SRT_READY_EVENT, type VideoSrtReady, type VideoSrtReadyEvent, VideoSrtReadyEventSchema };
