interface UsePdfViewerResult {
    pdfBlobUrl: string | null;
    pdfLoading: boolean;
    pdfError: string | null;
}
export declare const usePdfViewer: (url: string) => UsePdfViewerResult;
export {};
