import type { Boolean as B } from 'ts-toolbelt/out/Boolean/_Internal.js'; import type { Equals } from 'ts-toolbelt/out/Any/Equals.js'; import type { Test } from 'ts-toolbelt'; /** * Type checking test. * * @example * ``` * checks([ * check<1, number, Pass>(), * check<'foo', boolean, Fail>(), * ]) * ``` */ export declare function check(_debug?: Type): Equals, Outcome>; export declare function checks(_checks: 1[]): void; export type Fail = Test.Fail; export type Pass = Test.Pass; //# sourceMappingURL=Test.d.ts.map