import { Field } from './Field'; export declare class Json extends Field { databaseFieldType: string; component: { form: string; index: string; detail: string; }; constructor(name: string, databaseField?: string); } export declare const json: (name: string, databaseField?: string | undefined) => Json; export default Json;