import { JSONSchema, Draft } from '@squiz/json-schema-library'; import { defaultConfig } from './defaultDraftConfig'; export { defaultConfig }; /** * @deprecated Only used for FormattedText resolution */ export declare const ComponentInputSchema: Draft; /** * Deprecated JSON Validation Service that wraps the JSONSchemaService * @deprecated Use JSONSchemaService instead */ export declare class JsonValidationService { private jobSchemaService; private componentInputSchemaService; private renderInputSchemaService; private componentManifestSchemaService; validateManifest(manifest: unknown, version: 'v1' | 'JobV1'): true; validateContentSchema(contentSchema: JSONSchema): true; validateComponentInput(functionInputSchema: JSONSchema, inputValue: unknown): true; validateRenderInput(functionInputSchema: JSONSchema, inputValue: unknown): true; }