import { EventEmitter } from '../../stencil-public-runtime'; import { DyteI18n, IconPack } from '../../exports'; export declare class DyteFileDropzone { /** Host element on which drop events to attach */ hostEl: HTMLElement; /** Icon pack */ iconPack: IconPack; /** Language */ t: DyteI18n; /** drop event callback */ onDropCallback: EventEmitter; dropzoneActivated: boolean; connectedCallback(): void; render(): any; }