import { TemplateRef } from "@angular/core";
import { StepStatus, StepTagType } from "../components/step/step.component";
export interface StepItem {
    id: number;
    label: string;
    status: StepStatus;
    disabled?: boolean;
    icon?: string;
    customContent?: TemplateRef<any>;
    errorMessage?: string;
    alertMessage?: string;
    tooltip?: string;
    tagType?: StepTagType;
    hovered?: boolean;
}
