import { type ExpectTypeOf } from 'expect-type'; type AssertTypeOf = { equals: ExpectTypeOf['toEqualTypeOf']; notEquals: ExpectTypeOf['toEqualTypeOf']; slowEquals: ExpectTypeOf['branded']['toEqualTypeOf']; matches: ExpectTypeOf['toExtend']; notMatches: ExpectTypeOf['toExtend']; }; declare function tsType( /** Run-time value to type check. */ input: Actual): AssertTypeOf; /** Uses the expect-type package to assert type matching. */ declare function tsType(): AssertTypeOf; export declare const tsTypeGuards: { assert: { /** * Asserts within the TypeScript type system that a given type or value matches type * expectations (using the [`expect-type`](https://www.npmjs.com/package/expect-type) package. * Make sure to call a method on the first call to actually assert anything. * * Use this to write type tests. Don't use this in production code. It won't cause issues, but * it's a useless no-op at run-time (it's not even a type guard). * * Performs no type guarding. * * @example * * ```ts * import {assert} from '@augment-vir/assert'; * * assert.tsType('hello').equals(); * assert.tsType<'hello>().equals<'hello'>(); * assert.tsType<'hello>().notEquals(); * assert.tsType('hello').notEquals(); * ``` * * @returns Never returns anything. * @throws Never throws anything. */ tsType: typeof tsType; }; assertWrap: { tsType: undefined; }; check: { tsType: undefined; }; checkWrap: { tsType: undefined; }; waitUntil: { tsType: undefined; }; }; export {};