import { PdfEngineContextState } from '../context'; /** * Hook to access the PDF engine from context. * @returns The PDF engine context state * @throws Error if used outside of PdfEngineProvider */ export declare function useEngineContext(): PdfEngineContextState; /** * Hook to access the PDF engine, with a more convenient API. * @returns The PDF engine or null if loading/error */ export declare function useEngine(): import('@elhalawany/models').PdfEngine | null;