import { ContentObject } from "@vertesia/common"; interface SimplePdfViewerProps { /** The content object containing the PDF (optional if url or source is provided) */ object?: ContentObject; /** Direct signed URL to the PDF (ready to use, no resolution needed) */ url?: string; /** Storage source path that needs to be resolved to a download URL */ source?: string; /** Additional CSS class names */ className?: string; } /** * A standalone PDF viewer component that displays PDF thumbnails with navigation. * Fetches the PDF URL from the content object and displays it using PdfThumbnailSlider. * Does not depend on any magic-pdf context. */ export declare function SimplePdfViewer({ object, url, source, className }: SimplePdfViewerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SimplePdfViewer.d.ts.map