import type { Generic } from 'adopted-style-sheets'; import type { InputDateTypePropType, MsgPropType, PropAccessKey, PropAutoComplete, PropDisabled, PropHideLabel, PropHideMsg, PropHint, PropHorizontalIcons, PropId, PropLabelWithExpertSlot, PropMsg, PropName, PropReadOnly, PropRequired, PropShortKey, PropSuggestions, PropSyncValueBySelector, PropTouched } from '../props'; import type { InputTypeOnDefault, Iso8601, KoliBriHIcons, NumberString, Stringified, W3CInputValue } from '../types'; import type { InternalButtonProps } from './button'; type RequiredProps = PropLabelWithExpertSlot; type OptionalProps = { max: Iso8601 | Date; min: Iso8601 | Date; msg: Stringified; on: InputTypeOnDefault; smartButton: Stringified; step: number | NumberString; type: InputDateTypePropType; value: Iso8601 | Date | null; } & PropAccessKey & PropAutoComplete & PropDisabled & PropHideLabel & PropHideMsg & PropHint & PropHorizontalIcons & PropName & PropReadOnly & PropRequired & PropSuggestions & PropTouched; type RequiredStates = { hasValue: boolean; suggestions: W3CInputValue[]; type: InputDateTypePropType; } & PropLabelWithExpertSlot & PropHideMsg & PropId; type OptionalStates = { max: Iso8601; min: Iso8601; on: InputTypeOnDefault; placeholder: string; smartButton: InternalButtonProps; step: number; value: Iso8601 | null; } & PropAccessKey & PropAutoComplete & PropHint & PropSyncValueBySelector & PropDisabled & PropHideLabel & KoliBriHIcons & PropMsg & PropName & PropReadOnly & PropRequired & PropShortKey & PropTouched; export type InputDateProps = Generic.Element.Members; export type InputDateStates = Generic.Element.Members; export type InputDateWatches = Generic.Element.Watchers; export type InputDateAPI = Generic.Element.ComponentApi; export {};