import { OnInit } from '@angular/core'; import { File } from './file'; export declare class FileComponent implements OnInit { name: string; placeholder: string; caption: string; enabled: Boolean; multiple: boolean; loading: boolean; files: File[]; constructor(); ngOnInit(): void; onChange(files: FileList): void; onDblClick(file: File): void; resize(img: any, MAX_WIDTH?: number, MAX_HEIGHT?: number): string; }