import React from 'react';

interface PDFViewerWidgetProps {
    docId: string;
    userId: string;
    apiKey: string;
    theme?: "light" | "dark";
    height?: number | string;
    width?: number | string;
    readonly?: boolean;
    url: string;
}
declare const PDFViewerWidget: React.FC<PDFViewerWidgetProps>;

export { PDFViewerWidget, PDFViewerWidgetProps };
