import type { VideoOrientationValue } from './file-validation-types'; export declare class FileValidationLocalization { get invalidFile(): string; get unsupportedType(): string; get audioOnly(): string; get maxSize(): (size: string) => string; get extensions(): (list: string) => string; get maxDimensions(): (width: number, height: number) => string; get minDimensions(): (width: number, height: number) => string; get maxDuration(): (seconds: number) => string; get aspectRatio(): (ratios: string) => string; get aspectRatioRange(): (min: string, max: string) => string; get orientation(): (orientation: VideoOrientationValue) => string; get maxBitrate(): (kbps: number) => string; }