import { DebugElement, ModuleWithProviders, Provider, Type } from '@angular/core'; import { ComponentFixture, TestBedStatic } from '@angular/core/testing'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; declare type ComponentDeps = Array | ModuleWithProviders>; export interface ComponentBed { bed: TestBedStatic; fixture: ComponentFixture; nativeElement: HTMLElement; debugElement: DebugElement; component: T; } export declare function createComponentBed(component: Type, options?: { providers?: Provider[]; declarations?: ComponentDeps; imports?: ComponentDeps; }): ComponentBed; export {};