import { InjectionKey, Ref } from 'vue'; import { PdfEngine } from '@elhalawany/models'; export interface PdfEngineContextState { engine: Ref; isLoading: Ref; error: Ref; } export declare const pdfEngineKey: InjectionKey;