import type { NuxtLinkResolved } from "@/types";
export interface Steps {
    id: string;
    steps?: Step[];
    direction?: 'row' | 'column';
    linkTag?: 'a' | 'router-link' | NuxtLinkResolved;
    gtmId?: string;
}
export type Step = {
    key: string;
    text: string;
    finished?: boolean;
    subtitle?: string;
    current?: boolean;
    warning?: boolean;
    failed?: boolean;
    href?: string;
    target?: '_blank' | '_self' | '_parent' | '_top';
    rel?: string;
};
