/** * A function that does nothing, but can be used to assert types. * It's alternative to should library or expect, but for TypeLand in TypeScript. * @param _expected expected value for T type argument */ export declare function expectType(_expected: T): void;