import { ViewContainerRef } from '@angular/core';
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-ng-base';
/**
* 'e-files' directive represent a file of angular uploader
* It must be contained in a Uploader component(`ejs-uploader`).
* ```html
*
*
*
*
*
*
* ```
*/
export declare class UploadedFilesDirective extends ComplexBase {
private viewContainerRef;
/**
* Specifies the type of the file
* @default ''
*/
type: any;
/**
* Specifies the name of the file
* @default ''
*/
name: any;
/**
* Specifies the size of the file
* @default null
*/
size: any;
constructor(viewContainerRef: ViewContainerRef);
}
/**
* UploadedFiles Array Directive
* @private
*/
export declare class FilesDirective extends ArrayBase {
constructor();
}