import { ValidatorFn } from '@angular/forms'; /** * validator which checks to make sure that the file does not exceed * the maximum specified size * designed to work with a FormControl attached to a FileInputComponent * @param maxFileSizeBytes the maximum valid file size, in bytes */ export declare function fileSizeValidator(maxFileSizeBytes: number): ValidatorFn;