import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const BreadcrumbsItem: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Marks breadcrumb item as active/current (usually last item in breadcrumbs) */ active: { type: BooleanConstructor; default: false; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'text-black/55 dark:text-white/55' */ textIos?: string; /** * * @default 'text-md-light-on-secondary-container dark:text-md-dark-on-secondary-container' */ textMaterial?: string; /** * * @default '' */ bgIos?: string; /** * * @default 'bg-md-light-secondary-container dark:bg-md-dark-secondary-container' */ bgMaterial?: string; /** * * @default 'text-black dark:text-white' */ textActiveIos?: string; /** * * @default 'text-md-light-on-secondary-container dark:text-md-dark-on-secondary-container' */ textActiveMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default BreadcrumbsItem;