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