import type { JsonValueType } from './defs'; export type ToTypeScriptDefinitionOptions = { rootName?: string; tabSize?: number; comment?: boolean; }; export declare function toTypeScriptDefinition(value: JsonValueType, options?: ToTypeScriptDefinitionOptions): string; export declare function defaultValueFromJsonSchema(schema: JsonValueType): any;