/** * Interface for data content */ export interface TulStep { /** * Text under step */ stepText: string; /** * Optional actual state */ state?: StepState; /** * Optional id */ id?: number; } export declare enum StepType { NUMBER = "number", ICONS = "icons" } export declare enum StepState { INACTIVE = "inactive", ACTIVE = "active", FINISHED = "finished" } export declare type TulStepType = `${StepType}`; export declare type TulStepState = `${StepState}`;