import type { Generic } from 'adopted-style-sheets'; import type { LabelProp, PropLabel } from '../props'; import type { Stringified } from '../types'; import type { LinkProps } from './link'; export type BreadcrumbLinkProps = LinkProps & LabelProp; type RequiredProps = { links: Stringified; } & PropLabel; type OptionalProps = NonNullable; type RequiredStates = { links: BreadcrumbLinkProps[]; } & PropLabel; type OptionalStates = OptionalProps; export type BreadcrumbProps = Generic.Element.Members; export type BreadcrumbStates = Generic.Element.Members; export type BreadcrumbAPI = Generic.Element.ComponentApi; export {};