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