import { VNodeRef } from 'vue'; import { Style } from '@react-pdf/types'; export interface PDFViewerProps { width?: number | string; height?: number | string; style?: Style | Style[]; class?: string; innerRef?: VNodeRef; showToolbar?: boolean; } export declare const PDFViewer: any;