export declare const MAX_VIDEO_FILE_SIZE: number; export declare const MAX_VIDEO_DURATION: number; export declare const MIN_VIDEO_DURATION = 2; export declare const MIN_VIDEO_WIDTH = 50; export declare const MIN_VIDEO_HEIGHT = 50; export declare const ALLOWED_IMAGE_MIMETYPES: string[]; export declare const ALLOWED_VIDEO_MIMETYPES: string[]; export type ValidationResult = { valid: boolean; error: string | null; }; export declare function validateImageFile(file: File): ValidationResult; //# sourceMappingURL=validateMedia.d.ts.map