import type { ExistingProvider, Type } from '@angular/core'; export declare abstract class CuiVehicle { abstract readonly type: string; abstract toggle(value: boolean): void; } export declare function cuiAsVehicle(vehicle: Type): ExistingProvider;