import type { Generic } from 'adopted-style-sheets'; import type { PropCollapsible, PropHasCompactButton, PropHasIconsWhenExpanded, PropHideLabel, PropLabel } from '../props'; import type { ButtonOrLinkOrTextWithChildrenProps, Stringified } from '../types'; type RequiredProps = { links: Stringified; } & PropLabel; type OptionalProps = PropCollapsible & PropHasCompactButton & PropHasIconsWhenExpanded & PropHideLabel; type RequiredStates = { links: ButtonOrLinkOrTextWithChildrenProps[]; expandedChildren: ButtonOrLinkOrTextWithChildrenProps[][]; } & PropCollapsible & PropHasCompactButton & PropHasIconsWhenExpanded & PropHideLabel & PropLabel; type OptionalStates = NonNullable; export type NavProps = Generic.Element.Members; export type NavStates = Generic.Element.Members; export type NavAPI = Generic.Element.ComponentApi; export {};