import React from "react";
export type JSONViewerProps = {
    data: any;
};
export declare const JSONViewer: React.FC<JSONViewerProps>;
