/** * Whether the test runs in JSDOM environment */ export declare const isJSDOM: boolean; export type IfEquals = (() => G extends T ? 1 : 2) extends (() => G extends U ? 1 : 2) ? Y : N; /** * Issues a type error if `Expected` is not identical to `Actual`. * * `Expected` should be declared when invoking `expectType`. * `Actual` should almost always we be a `typeof value` statement. * * @example `expectType(value)` * TypeScript issues a type error since `value is not assignable to never`. * This means `typeof value` is not identical to `number | string` * @param _actual */ export declare function expectType(_actual: IfEquals): void;