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