export type Requiredish = { [K in keyof Required]: T[K]; }; export type Extends = U; export type IsExact = [T] extends [U] ? [U] extends [T] ? true : false : false; export declare function assertExactType(_expectTrue: T): void;