import * as React from 'react';
import type { OnChange } from './types';
export interface JsonPropertyProps {
    pointer: string;
    onChange?: OnChange;
}
export declare const JsonProperty: React.FC<JsonPropertyProps>;
