import type { Generic } from 'adopted-style-sheets'; import type { MsgPropType, PropAccessKey, PropDisabled, PropHideLabel, PropHideMsg, PropHint, PropHorizontalIcons, PropId, PropLabelWithExpertSlot, PropMsg, PropName, PropOptions, PropRequired, PropRows, PropShortKey, PropSyncValueBySelector, PropTouched } from '../props'; import type { InputTypeOnDefault, KoliBriHIcons, Option, StencilUnknown, Stringified } from '../types'; type RequiredProps = PropLabelWithExpertSlot & PropOptions; type OptionalProps = { msg: Stringified; on: InputTypeOnDefault; placeholder: string; value: StencilUnknown; hasClearButton: boolean; } & PropAccessKey & PropDisabled & PropHideMsg & PropHideLabel & PropHint & PropHorizontalIcons & PropName & PropRequired & PropRows & PropSyncValueBySelector & PropShortKey & PropTouched; type RequiredStates = { options: Option[]; } & PropId & PropHideMsg & PropLabelWithExpertSlot; type OptionalStates = { on: InputTypeOnDefault; placeholder: string; hasClearButton: boolean; } & PropAccessKey & PropDisabled & PropHideLabel & KoliBriHIcons & PropHint & PropName & PropRequired & PropRows & PropMsg & PropShortKey & PropTouched; export type SingleSelectProps = Generic.Element.Members; export type SingleSelectStates = Generic.Element.Members; export type SingleSelectWatches = Generic.Element.Watchers; export type SingleSelectAPI = Generic.Element.ComponentApi; export {};