///
import type { PDFDocumentProxy } from "pdfjs-dist";
import type { Theme } from "@mui/material/styles";
declare type PdfPageRendererProps = {
pdf: PDFDocumentProxy;
currentPage: number;
scale: number;
theme: {
myTheme: Theme;
};
styleConfig?: {
containerStyle?: React.CSSProperties;
};
};
declare const PdfPageRenderer: React.FC;
export default PdfPageRenderer;