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