import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'div' */ component?: string | React.ComponentType; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * * @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; }; } // @ts-ignore interface BreadcrumbsCollapsedProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const BreadcrumbsCollapsed: React.ComponentType; export default BreadcrumbsCollapsed;