import { BaseComponent, CustomTokens } from './_shared'; export type ZBreadcrumbs_Custom = 'color--active'; export type ZBreadcrumbs_Crumb = { /** ... */ readonly to: string; /** ... */ readonly text: string; }; export type ZBreadcrumbs_Props = BaseComponent & Partial<{ /** ... */ readonly home: boolean; /** ... */ readonly crumbs: ZBreadcrumbs_Crumb[]; /** */ readonly custom: CustomTokens; }>; export declare const zBreadcrumbsSlots: never[]; export type ZBreadcrumbs_Slots = (typeof zBreadcrumbsSlots)[number]; export type ZBreadcrumbs_Events = {};