import { CarouselResponsiveOptions } from 'primeng/carousel'; export interface SelectedFile { file: File; readableSize?: string; imageUrl?: string; } export interface FileUploadError { isError: boolean; type: FilUploadErrorTypes; } export declare const fileSizes: string[]; export declare enum FileUploadStatus { NotStarted = "NotStarted", InProgress = "InProgress", Completed = "Completed", Failed = "Failed", Cancelled = "Cancelled" } export declare enum FilUploadErrorTypes { ExtensionNotSupported = "ExtensionNotSupported", MultipleFilesNotSupported = "MultipleFilesNotSupported" } export declare const DEFAULT_MULTI_FILE_SUPPORT = false; export declare const DEFAULT_ACCEPT_TYPE: string; export declare const DEFAULT_UPLOAD_TITLE: string; export declare const DEFAULT_UPLOAD_ICON: string; export declare const DEFAULT_FILE_BROWSE_BUTTON_ICON: string; export declare const DEFAULT_DROPZONE_TEXT: string; export declare const DEFAULT_BROWSE_BUTTON_TEXT: string; export declare const DEFAULT_DROP_PLACEHOLDER_TEXT: string; export declare const DEFAULT_DROPZONE_HINT: string; export declare const DEFAULT_REMOVE_BUTTON_TEXT: string; export declare const DEFAULT_UPLOAD_BUTTON_TEXT: string; export declare const DEFAULT_RETRY_BUTTON_TEXT: string; export declare const DEFAULT_CANCEL_BUTTON_TEXT: string; export declare const DEFAULT_RESPONSIVE_OPTIONS: CarouselResponsiveOptions[]; export declare const DEFAULT_VISIBLE_FILES: number;