import { ValidatorFn } from '@angular/forms';
export declare class FileValidator {
    /**
     * Function to control content of files
     *
     * @param bytes max number of bytes allowed
     *
     * @returns
     */
    static maxContentSize(bytes: number): ValidatorFn;
}
