import type { ValidateStateNested } from '@ui-schema/ui-schema/Validate'; import type { SomeSchema } from '@ui-schema/ui-schema/CommonTypings'; /** * Handles schema if else then and returns the new merged schema which contains the merged value of `if` and `then` * @deprecated included in validators */ export declare const handleIfElseThen: (schema: SomeSchema, value: unknown, distSchema: SomeSchema, state: ValidateStateNested) => SomeSchema;