/** * Asserts that the type of `expression` is assignable to type `T`. */ export declare function expectAssignable(expression: unknown): void; /** * Asserts that the type of `expression` is not assignable to type `T`. */ export declare function expectNotAssignable(expression: unknown): void; /** * Asserts that the type of `expression` is identical to type `T`. */ export declare function expectType(expression: unknown): void; /** * Asserts that the type of `expression` is not identical to type `T`. */ export declare function expectNotType(expression: unknown): void; /** * Asserts the `expression` has a type error. */ export declare function expectError(value: unknown): void;