import React from "react";
export type JSONViewerProps = {
    data: unknown | null;
    width: number;
    height: number;
    isFocused: boolean;
};
export declare const JSONViewer: React.FC<JSONViewerProps>;
