import { ValidateFn } from '@ui-schema/ui-schema/Validate'; import { Map, OrderedMap } from 'immutable'; import type { SomeSchema } from '@ui-schema/ui-schema/CommonTypings'; /** * @deprecated use new validatorPlugin instead */ export declare const handleSchemaCombine: (validate: ValidateFn, schema: SomeSchema, value: Map | OrderedMap) => SomeSchema; /** * @deprecated use new validatorPlugin instead */ export declare const useSchemaCombine: (validate: ValidateFn | undefined, schema: SomeSchema, value: unknown) => SomeSchema;