import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const BreadcrumbsCollapsed: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'bg-black/15 dark:bg-white/15' */ bgIos?: string; /** * * @default 'bg-md-light-secondary-container dark:bg-md-dark-secondary-container' */ bgMaterial?: string; /** * * @default 'bg-black dark:bg-white' */ dotBgIos?: string; /** * * @default 'bg-md-light-primary dark:bg-md-dark-primary' */ dotBgMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default BreadcrumbsCollapsed;