import { EventEmitter, OnInit } from "@angular/core"; import { FormControl } from "@angular/forms"; export declare class UploadComponent implements OnInit { private _control; imageBase64: any; filename: string; control: FormControl; onChange: EventEmitter; image: string; disabled: boolean; imageChange: EventEmitter; constructor(); ngOnInit(): void; inputChange(fileList: FileList): void; } export declare class UploadContentComponent { }