declare type TTest = { a: string; }; declare type TTest1 = { c: number; }; export declare class TCanIUseInstance { c: boolean; canIUse(request: R): this is TTest & TTest1; } export {};