import { ICAStep } from "../interfaces/i-ca-step.interface"; import { EventEmitter } from "@angular/core"; export declare abstract class CAStepAbstract implements ICAStep { static readonly TYPE_FORM: string; type: string; subType: string; id: string; current: boolean; disabled: boolean; skip: boolean; completed: boolean; loaded: boolean; alreadyLoaded: EventEmitter; constructor(subtype: string, current?: boolean, disabled?: boolean, skip?: boolean, completed?: boolean); protected abstract getIdFrom(): string; protected abstract getTypeFrom(): string; protected abstract load(): void; loadCompleted(): void; }