export interface NeonBreadcrumbLink {
    /**
     * * The url of a breadcrumb link. If left empty the link will be rendered as text.
     */
    url?: string;
    /**
     * The display label of a breadcrumb link.
     */
    label: string;
}
