import type { FC, ReactNode } from 'react'; type Props = { open: boolean; title: ReactNode; url?: string; data?: string; onClose: () => void; dataTestId?: string; }; export declare const PdfViewerDialog: FC; export {};