import type { ComputedRef, InjectionKey } from 'vue'; export interface UploadContext { accept: ComputedRef<string>; } export declare const uploadContextKey: InjectionKey<UploadContext>;