import { EventEmitter } from "../../stencil-public-runtime"; import { SwirlFormInput } from "../../utils"; import { SwirlButtonVariant } from "../swirl-button/swirl-button"; export declare class SwirlFileUploader implements SwirlFormInput { accept?: string; ctaLabel?: string; description?: string; descriptionAllowHtml?: boolean; disabled?: boolean; dragDropLabel?: string; hideLabel?: boolean; inputId: string; inputName: string; label: string; multiple?: boolean; showDropzone?: boolean; uploadButtonIcon?: string; uploadButtonLabel?: string; uploadButtonVariant?: SwirlButtonVariant; valueChange: EventEmitter; private inputEl; /** * Reset the file input. */ reset(): Promise; private onChange; private onUploadButtonClick; render(): any; }