import type { Generic } from 'adopted-style-sheets'; import type { PropLabel, PropShow, PropSpinVariant } from '../props'; type RequiredProps = NonNullable; type OptionalProps = PropSpinVariant & PropShow & PropLabel; type RequiredStates = PropSpinVariant; type OptionalStates = PropShow & PropLabel; export type SpinProps = Generic.Element.Members; export type SpinStates = Generic.Element.Members; export type SpinAPI = Generic.Element.ComponentApi; export {};