import type { NuxtLinkResolved } from "@/types";
export type Item = {
    href: string;
    text: string;
    target?: '_blank' | '_self' | '_parent' | '_top';
    rel?: string;
};
export interface Breadcrumb {
    id: string;
    items?: Item[];
    gtmId?: string;
    linkTag?: 'a' | 'router-link' | NuxtLinkResolved;
    dark?: boolean;
}
