import { EventEmitter } from '@angular/core';
export declare class FileUpload {
    status: string;
    allowedTypes: any;
    allowedSize: number;
    multiple: boolean;
    onUploadFiles: EventEmitter<any>;
    constructor();
    ngOnInit(): void;
    onDragEnter(evt: any): void;
    onDragOver(evt: any): void;
    onSelectFiles(evt: any): void;
    onDrop(evt: any): void;
    uploadFiles(files: any): void;
    reset(): void;
}
