import { Ref, InjectionKey } from 'vue'; export type VaFileUploadInject = { undo: Ref; disabled: Ref; undoDuration: Ref; undoButtonText: Ref; deletedFileMessage: Ref; }; export declare const VaFileUploadKey: InjectionKey; export interface VaFile extends Partial { url?: string; } export type ConvertedFile = { name: string; size?: string; date: string; image?: VaFile; };