import { Widthable } from '../../composables/widthable'; import { locales as defaultLocales } from './UploadItem/locales'; export type FileState = 'initial' | 'success' | 'error' | 'loading'; export interface Item { id: string; title: string; state: string; fileName?: string; optional?: boolean; progress?: number; showUploadBtn?: boolean; showPreviewBtn?: boolean; showDeleteBtn?: boolean; } type __VLS_Props = { uploadList: Item[]; locales?: typeof defaultLocales; seeLabel?: string; importLabel?: string; deleteLabel?: string; } & Widthable; declare function __VLS_template(): { attrs: Partial<{}>; slots: Partial any>>; refs: {}; rootEl: HTMLUListElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { delete: (item: Item) => any; upload: (item: Item) => any; preview: (item: Item) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onDelete?: ((item: Item) => any) | undefined; onUpload?: ((item: Item) => any) | undefined; onPreview?: ((item: Item) => any) | undefined; }>, { locales: typeof defaultLocales; seeLabel: string; deleteLabel: string; importLabel: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLUListElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };