import React from "react";
type PdfViewState = null | {
    url: string;
    file_name: string;
    page: number;
    searchFor: string;
};
export declare const pdfViewState: import("jotai").PrimitiveAtom<PdfViewState> & {
    init: PdfViewState;
};
export declare const PdfViewer: (props: NonNullable<PdfViewState>) => React.JSX.Element;
export {};
//# sourceMappingURL=PdfViewer.d.ts.map