import { LitElement } from 'lit'; import './index'; import '../button'; import '../notification'; import '../progressBar'; export declare class SampleFileUploader extends LitElement { static styles: import("lit").CSSResult; accessor multiple: boolean; accessor immediate: boolean; accessor _validFiles: any[]; accessor _invalidFiles: any[]; accessor _showNotification: boolean; accessor _notificationStatus: string; accessor _notificationTitle: string; accessor _notificationTimeout: number; accessor _notificationMessage: string; accessor _showProgressBar: boolean; accessor _currentFileUploading: string; accessor _completedFiles: number; accessor _totalFiles: number; accessor _overallProgress: number; accessor _uploadCanceled: boolean; accessor _helperText: string; accessor _disabled: boolean; accessor _form: HTMLFormElement; render(): import("lit-html").TemplateResult<1>; _handleFilesToBeUploaded(e: any): void; private _disableUploadButton; _startFileUpload(): void; _uploadFiles(): Promise; _stopFileUpload(): void; _setNotificationConfig(visible: boolean, status: string, title: string, message: string): void; } declare global { interface HTMLElementTagNameMap { 'sample-file-uploader': SampleFileUploader; } } //# sourceMappingURL=fileUploader.sample.d.ts.map