export interface IBreadcrumb {
    /**
     *
     */
    id: string;
    /**
     *
     */
    label: string;
    /**
     *
     */
    url?: string;
}
export interface IBreadcrumbsProps {
    /**
     * Array of string for the breadcrumbs
     */
    breadcrumbs: Array<IBreadcrumb>;
}
