import type { Generic } from 'adopted-style-sheets'; import type { MsgPropType, PropDisabled, PropHideLabel, PropHideMsg, PropHint, PropId, PropLabelWithExpertSlot, PropMsg, PropName, PropRadioOptions, PropRequired, PropSyncValueBySelector, PropTooltipAlign, PropTouched } from '../props'; import type { PropOrientation } from '../props/orientation'; import type { InputTypeOnDefault, RadioOption, StencilUnknown, Stringified } from '../types'; type RequiredProps = PropLabelWithExpertSlot; type OptionalProps = { msg: Stringified; on: InputTypeOnDefault; value: StencilUnknown; } & PropDisabled & PropHideLabel & PropHideMsg & PropHint & PropName & PropOrientation & PropRadioOptions & PropRequired & PropSyncValueBySelector & PropTouched & PropTooltipAlign; type RequiredStates = { options: RadioOption[]; } & PropId & PropHideMsg & PropLabelWithExpertSlot & PropOrientation; type OptionalStates = { on: InputTypeOnDefault; value: StencilUnknown; } & PropDisabled & PropHideLabel & PropHint & PropMsg & PropName & PropRequired & PropTouched; export type InputRadioProps = Generic.Element.Members; export type InputRadioStates = Generic.Element.Members; export type InputRadioWatches = Generic.Element.Watchers; export type InputRadioAPI = Generic.Element.ComponentApi; export {};