import * as React from 'react';
import { JsonSchema } from '../types.js';
type Props = {
    data: string;
    schema: JsonSchema | null;
};
export default function JsonViewer(props: Props): React.JSX.Element;
export {};
