import type { IconName as FontAwesome } from '@fortawesome/fontawesome-common-types'; export type FluxIconName = FontAwesome; export type FluxIconStyle = | 'solid' | 'regular' | 'light' | 'thin' | 'duotone' | 'brands'; export type FluxAlignment = | 'start' | 'center' | 'end'; export type FluxAlign = | FluxAlignment | 'stretch' | 'baseline'; export type FluxColor = | 'gray' | 'primary' | 'danger' | 'info' | 'success' | 'warning'; export type FluxDirection = | 'horizontal' | 'vertical'; export type FluxFlexWrap = | 'wrap' | 'nowrap' | 'wrap-reverse'; export type FluxJustify = | FluxAlignment | 'between' | 'around' | 'evenly'; export type FluxInputMask = | 'bic' | 'iban' | 'vat'; export type FluxInputType = | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'month' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'time' | 'url' | 'week'; export type FluxPressableType = | 'button' | 'link' | 'route' | 'none'; export type FluxSize = | 'small' | 'medium' | 'large'; export type FluxTo = { name?: string; path?: string; hash?: string; query?: Record; params?: Record; state?: Record; append?: boolean; replace?: boolean; }; export type FluxMaybePromise = T | Promise; export type FluxAutoCompleteType = | AutoCompleteToken | AutoCompleteContactToken | AutoCompleteRecipientType | AutoCompleteGroupIdentifier | `${AutoCompleteGroupIdentifier} ${AutoCompleteToken}` | `${AutoCompleteGroupIdentifier} ${AutoCompleteContactToken}` | (string & {}); type AutoCompleteGroupIdentifier = | 'billing' | 'shipping'; type AutoCompleteRecipientType = | 'home' | 'work' | 'mobile' | 'fax' | 'page'; type AutoCompleteContactToken = | 'tel' | 'tel-country-code' | 'tel-national' | 'tel-area-code' | 'tel-local' | 'tel-extension' | 'email' | 'impp'; type AutoCompleteToken = | 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix' | 'nickname' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization' | 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'cc-name' | 'cc-given-name' | 'cc-additional-name' | 'cc-family-name' | 'cc-number' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-csc' | 'cc-type' | 'transaction-currency' | 'transaction-amount' | 'language' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'sex' | 'url' | 'photo' | 'webauthn';