import type { Generic } from 'adopted-style-sheets'; import type { PropLabel } from '../props'; import type { Stringified } from '../types'; import type { LinkProps } from './link'; type RequiredProps = { links: Stringified; } & PropLabel; type OptionalProps = NonNullable; type RequiredStates = { links: LinkProps[]; } & PropLabel; type OptionalStates = OptionalProps; export type SkipNavProps = Generic.Element.Members; export type SkipNavStates = Generic.Element.Members; export type SkipNavAPI = Generic.Element.ComponentApi; export {};