import { TextFieldProps } from "@mui/material/TextField";
/**
 * JSON text field props
 */
export type JsonTextFieldProps = TextFieldProps & {
    /**
     * Whether the value is an array
     */
    isArray?: boolean;
    /**
     * Edit button click handler
     */
    onEdit?: (input: HTMLInputElement) => void;
};
/**
 * JSON text field component
 * @param props Props
 * @returns Component
 */
export declare function JsonTextField(props: JsonTextFieldProps): import("react/jsx-runtime").JSX.Element;
