import { DebugElement, NgModule, Type } from '@angular/core'; import { ComponentFixture, TestBed } from '@angular/core/testing'; type ComponentBedOptions = Pick; export interface ComponentBed { bed: TestBed; fixture: ComponentFixture; nativeElement: HTMLElement; debugElement: DebugElement; component: T; } export declare function createComponentBed(component: Type, options?: ComponentBedOptions): ComponentBed; export {};