import { Ref } from 'vue'; import { Logger, PdfEngine } from '@elhalawany/models'; interface UsePdfiumEngineProps { wasmUrl?: string; worker?: boolean; logger?: Logger; } interface UsePdfiumEngineResult { engine: Ref; isLoading: Ref; error: Ref; } /** * Vue composable that loads a PdfiumEngine (worker or direct) * and keeps its lifetime tied to the component. */ export declare function usePdfiumEngine(props?: UsePdfiumEngineProps): UsePdfiumEngineResult; export {};