import { type TSchema } from '../types/schema.mjs'; import { type TProperties } from '../types/properties.mjs'; import { type TNull } from '../types/null.mjs'; import { type TExtendsRight } from './extends_right.mjs'; import * as Result from './result.mjs'; export type TExtendsNull = (Right extends TNull ? Result.TExtendsTrue : TExtendsRight); export declare function ExtendsNull(inferred: Inferred, left: Left, right: Right): TExtendsNull;