import * as React from 'react'; import { ConfigSchema_allConfigTypes as TypeData } from './configeditor/types/ConfigSchema'; type ConfigTypeSchemaTheme = 'dark' | 'light'; export type { TypeData }; interface ConfigTypeSchemaProps { type: TypeData; typesInScope: TypeData[]; theme?: ConfigTypeSchemaTheme; maxDepth?: number; } export declare const tryPrettyPrintJSON: (jsonString: string) => string; export declare const ConfigTypeSchema: React.MemoExoticComponent<(props: ConfigTypeSchemaProps) => import("react/jsx-runtime").JSX.Element>;