import type { Generic } from 'adopted-style-sheets'; import type { ButtonCallbacksPropType, PropAlternativeButtonLinkRole, PropButtonVariant, PropDisabled, PropHideLabel, PropIcons, PropLabel, PropName, PropShow, PropTooltipAlign } from '../props'; import type { StencilUnknown } from '../types'; type RequiredProps = PropLabel; type OptionalProps = { on?: ButtonCallbacksPropType; } & PropDisabled & PropHideLabel & PropAlternativeButtonLinkRole & PropIcons & PropTooltipAlign & PropButtonVariant & PropName; type RequiredStates = PropShow; type OptionalStates = NonNullable; export type SplitButtonProps = Generic.Element.Members; export type SplitButtonStates = Generic.Element.Members; export type SplitButtonAPI = Generic.Element.ComponentApi; export {};