///
import { EventEmitter, ElementRef, AfterViewInit } from '@angular/core';
import * as Croppie from 'croppie';
import { CroppieDirective } from 'angular-croppie-module';
export declare class ImageCropperComponent implements AfterViewInit {
private elRef;
imageUrl: any;
fileCropped: EventEmitter;
croppingActionCanceled: EventEmitter;
latestCrop: {};
croppieDirective: CroppieDirective;
croppieOptions: Croppie.CroppieOptions;
constructor(elRef: ElementRef);
ngAfterViewInit(): void;
handleUpdate(data: any): void;
cropImage(): Promise;
cancelCropping(): void;
}