import { z } from 'zod';

declare const VIDEO_STATUS_CHECK_EVENT = "video/status-check";
type EventVideoStatusCheck = {
    name: typeof VIDEO_STATUS_CHECK_EVENT;
    data: VideoStatusCheckEvent;
};
declare const VideoStatusCheckEventSchema: z.ZodObject<{
    videoResourceId: z.ZodString;
    fileKey: z.ZodString;
}, "strip", z.ZodTypeAny, {
    videoResourceId: string;
    fileKey: string;
}, {
    videoResourceId: string;
    fileKey: string;
}>;
type VideoStatusCheckEvent = z.infer<typeof VideoStatusCheckEventSchema>;

export { type EventVideoStatusCheck, VIDEO_STATUS_CHECK_EVENT, type VideoStatusCheckEvent, VideoStatusCheckEventSchema };
