interface WebViewerProps {
    jsonString: string;
    readmefetch?: () => Promise<string>;
    licensefetch?: () => Promise<string>;
}
export default function WebViewer({ jsonString, readmefetch, licensefetch }: WebViewerProps): import("react/jsx-runtime").JSX.Element;
export {};
