import XVType from '../XVType.js'; declare class XVFile extends XVType { constructor(size?: number); protected check(input: unknown): File | Blob; size(size: number): this; minsize(size: number): this; maxsize(size: number): this; type(allowedTypes: string[]): this; extension(allowedExtensions: string[]): this; } export { XVFile as default };