/* eslint-disable */ import type { AnySelector, Selectors } from './selectors'; export interface Conditions { /** `&:is(:hover, [data-hover])` */ "_hover": string /** `&:is(:focus, [data-focus])` */ "_focus": string /** `&:focus-within` */ "_focusWithin": string /** `&:is(:focus-visible, [data-focus-visible])` */ "_focusVisible": string /** `&:is(:disabled, [disabled], [data-disabled])` */ "_disabled": string /** `&:is(:active, [data-active])` */ "_active": string /** `&:visited` */ "_visited": string /** `&:target` */ "_target": string /** `&:is(:read-only, [data-read-only])` */ "_readOnly": string /** `&:read-write` */ "_readWrite": string /** `&:is(:empty, [data-empty])` */ "_empty": string /** `&:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"])` */ "_checked": string /** `&:enabled` */ "_enabled": string /** `&:is([aria-expanded=true], [data-expanded], [data-state="expanded"])` */ "_expanded": string /** `&[data-highlighted]` */ "_highlighted": string /** `&::before` */ "_before": string /** `&::after` */ "_after": string /** `&::first-letter` */ "_firstLetter": string /** `&::first-line` */ "_firstLine": string /** `&::marker` */ "_marker": string /** `&::selection` */ "_selection": string /** `&::file-selector-button` */ "_file": string /** `&::backdrop` */ "_backdrop": string /** `&:first-child` */ "_first": string /** `&:last-child` */ "_last": string /** `&:only-child` */ "_only": string /** `&:nth-child(even)` */ "_even": string /** `&:nth-child(odd)` */ "_odd": string /** `&:first-of-type` */ "_firstOfType": string /** `&:last-of-type` */ "_lastOfType": string /** `&:only-of-type` */ "_onlyOfType": string /** `.peer:is(:focus, [data-focus]) ~ &` */ "_peerFocus": string /** `.peer:is(:hover, [data-hover]) ~ &` */ "_peerHover": string /** `.peer:is(:active, [data-active]) ~ &` */ "_peerActive": string /** `.peer:focus-within ~ &` */ "_peerFocusWithin": string /** `.peer:is(:focus-visible, [data-focus-visible]) ~ &` */ "_peerFocusVisible": string /** `.peer:is(:disabled, [disabled], [data-disabled]) ~ &` */ "_peerDisabled": string /** `.peer:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) ~ &` */ "_peerChecked": string /** `.peer:is(:invalid, [data-invalid], [aria-invalid=true]) ~ &` */ "_peerInvalid": string /** `.peer:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) ~ &` */ "_peerExpanded": string /** `.peer:placeholder-shown ~ &` */ "_peerPlaceholderShown": string /** `.group:is(:focus, [data-focus]) &` */ "_groupFocus": string /** `.group:is(:hover, [data-hover]) &` */ "_groupHover": string /** `.group:is(:active, [data-active]) &` */ "_groupActive": string /** `.group:focus-within &` */ "_groupFocusWithin": string /** `.group:is(:focus-visible, [data-focus-visible]) &` */ "_groupFocusVisible": string /** `.group:is(:disabled, [disabled], [data-disabled]) &` */ "_groupDisabled": string /** `.group:is(:checked, [data-checked], [aria-checked=true], [data-state="checked"]) &` */ "_groupChecked": string /** `.group:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) &` */ "_groupExpanded": string /** `.group:invalid &` */ "_groupInvalid": string /** `&:is(:indeterminate, [data-indeterminate], [aria-checked=mixed], [data-state="indeterminate"])` */ "_indeterminate": string /** `&:is(:required, [data-required], [aria-required=true])` */ "_required": string /** `&:is(:valid, [data-valid])` */ "_valid": string /** `&:is(:invalid, [data-invalid])` */ "_invalid": string /** `&:autofill` */ "_autofill": string /** `&:in-range` */ "_inRange": string /** `&:out-of-range` */ "_outOfRange": string /** `&::placeholder, &[data-placeholder]` */ "_placeholder": string /** `&:is(:placeholder-shown, [data-placeholder-shown])` */ "_placeholderShown": string /** `&:is([aria-pressed=true], [data-pressed])` */ "_pressed": string /** `&:is([aria-selected=true], [data-selected])` */ "_selected": string /** `&:default` */ "_default": string /** `&:optional` */ "_optional": string /** `&:is([open], [data-open], [data-state="open"])` */ "_open": string /** `&:is([closed], [data-closed], [data-state="closed"])` */ "_closed": string /** `&:fullscreen` */ "_fullscreen": string /** `&:is([data-loading], [aria-busy=true])` */ "_loading": string /** `&[aria-current=page]` */ "_currentPage": string /** `&[aria-current=step]` */ "_currentStep": string /** `@media (prefers-reduced-motion: reduce)` */ "_motionReduce": string /** `@media (prefers-reduced-motion: no-preference)` */ "_motionSafe": string /** `@media print` */ "_print": string /** `@media (orientation: landscape)` */ "_landscape": string /** `@media (orientation: portrait)` */ "_portrait": string /** `.dark &, [data-theme="dark"] &` */ "_dark": string /** `.light &` */ "_light": string /** `@media (prefers-color-scheme: dark)` */ "_osDark": string /** `@media (prefers-color-scheme: light)` */ "_osLight": string /** `@media (forced-colors: active)` */ "_highContrast": string /** `@media (prefers-contrast: less)` */ "_lessContrast": string /** `@media (prefers-contrast: more)` */ "_moreContrast": string /** `[dir=ltr] &` */ "_ltr": string /** `[dir=rtl] &` */ "_rtl": string /** `&::-webkit-scrollbar` */ "_scrollbar": string /** `&::-webkit-scrollbar-thumb` */ "_scrollbarThumb": string /** `&::-webkit-scrollbar-track` */ "_scrollbarTrack": string /** `&[data-orientation=horizontal]` */ "_horizontal": string /** `&[data-orientation=vertical]` */ "_vertical": string /** `@starting-style` */ "_starting": string /** `&[type=number]` */ "_typeNumber": string /** `&[placeholder]` */ "_placeholder_parent": string /** `&::-webkit-outer-spin-button, &::-webkit-inner-spin-button` */ "_spinButtons": string /** `&[data-state="active"]` */ "_data_state_active": string /** `&[data-state="open"]` */ "_data_state_open": string /** `[data-state=open] &` */ "_data_state_open_child": string /** `&[data-state="closed"]` */ "_data_state_closed": string /** `&[data-swipe="move"]` */ "_data_swipe_move": string /** `&[data-swipe="cancel"]` */ "_data_swipe_cancel": string /** `&[data-swipe="end"]` */ "_data_swipe_end": string /** `&[data-state="checked"]` */ "_data_state_checked": string /** `@media (color-gamut: p3)` */ "_p3": string /** `@media (color-gamut: srgb)` */ "_srgb": string /** `@media (color-gamut: rec2020)` */ "_rec2020": string /** `@media screen and (min-width: 18.75rem)` */ "bp300": string /** `@media screen and (min-width: 18.75rem) and (max-width: 24.9975rem)` */ "bp300Only": string /** `@media screen and (max-width: 18.7475rem)` */ "bp300Down": string /** `@media screen and (min-width: 25rem)` */ "bp400": string /** `@media screen and (min-width: 25rem) and (max-width: 31.2475rem)` */ "bp400Only": string /** `@media screen and (max-width: 24.9975rem)` */ "bp400Down": string /** `@media screen and (min-width: 31.25rem)` */ "bp500": string /** `@media screen and (min-width: 31.25rem) and (max-width: 37.4975rem)` */ "bp500Only": string /** `@media screen and (max-width: 31.2475rem)` */ "bp500Down": string /** `@media screen and (min-width: 37.5rem)` */ "sm": string /** `@media screen and (min-width: 37.5rem) and (max-width: 37.4975rem)` */ "smOnly": string /** `@media screen and (max-width: 37.4975rem)` */ "smDown": string /** `@media screen and (min-width: 37.5rem)` */ "bp600": string /** `@media screen and (min-width: 37.5rem) and (max-width: 43.7475rem)` */ "bp600Only": string /** `@media screen and (max-width: 37.4975rem)` */ "bp600Down": string /** `@media screen and (min-width: 43.75rem)` */ "bp700": string /** `@media screen and (min-width: 43.75rem) and (max-width: 49.9975rem)` */ "bp700Only": string /** `@media screen and (max-width: 43.7475rem)` */ "bp700Down": string /** `@media screen and (min-width: 50rem)` */ "bp800": string /** `@media screen and (min-width: 50rem) and (max-width: 56.2475rem)` */ "bp800Only": string /** `@media screen and (max-width: 49.9975rem)` */ "bp800Down": string /** `@media screen and (min-width: 56.25rem)` */ "md": string /** `@media screen and (min-width: 56.25rem) and (max-width: 56.2475rem)` */ "mdOnly": string /** `@media screen and (max-width: 56.2475rem)` */ "mdDown": string /** `@media screen and (min-width: 56.25rem)` */ "bp900": string /** `@media screen and (min-width: 56.25rem) and (max-width: 62.4975rem)` */ "bp900Only": string /** `@media screen and (max-width: 56.2475rem)` */ "bp900Down": string /** `@media screen and (min-width: 62.5rem)` */ "bp1000": string /** `@media screen and (min-width: 62.5rem) and (max-width: 68.7475rem)` */ "bp1000Only": string /** `@media screen and (max-width: 62.4975rem)` */ "bp1000Down": string /** `@media screen and (min-width: 68.75rem)` */ "bp1100": string /** `@media screen and (min-width: 68.75rem) and (max-width: 74.9975rem)` */ "bp1100Only": string /** `@media screen and (max-width: 68.7475rem)` */ "bp1100Down": string /** `@media screen and (min-width: 75rem)` */ "lg": string /** `@media screen and (min-width: 75rem) and (max-width: 74.9975rem)` */ "lgOnly": string /** `@media screen and (max-width: 74.9975rem)` */ "lgDown": string /** `@media screen and (min-width: 75rem)` */ "bp1200": string /** `@media screen and (min-width: 75rem) and (max-width: 81.2475rem)` */ "bp1200Only": string /** `@media screen and (max-width: 74.9975rem)` */ "bp1200Down": string /** `@media screen and (min-width: 81.25rem)` */ "bp1300": string /** `@media screen and (min-width: 81.25rem) and (max-width: 87.4975rem)` */ "bp1300Only": string /** `@media screen and (max-width: 81.2475rem)` */ "bp1300Down": string /** `@media screen and (min-width: 87.5rem)` */ "xl": string /** `@media screen and (min-width: 87.5rem) and (max-width: 87.4975rem)` */ "xlOnly": string /** `@media screen and (max-width: 87.4975rem)` */ "xlDown": string /** `@media screen and (min-width: 87.5rem)` */ "bp1400": string /** `@media screen and (min-width: 87.5rem) and (max-width: 93.7475rem)` */ "bp1400Only": string /** `@media screen and (max-width: 87.4975rem)` */ "bp1400Down": string /** `@media screen and (min-width: 93.75rem)` */ "bp1500": string /** `@media screen and (min-width: 93.75rem) and (max-width: 95.9975rem)` */ "bp1500Only": string /** `@media screen and (max-width: 93.7475rem)` */ "bp1500Down": string /** `@media screen and (min-width: 96rem)` */ "2xl": string /** `@media screen and (min-width: 96rem)` */ "2xlOnly": string /** `@media screen and (max-width: 95.9975rem)` */ "2xlDown": string /** `@media screen and (min-width: 18.75rem) and (max-width: 24.9975rem)` */ "bp300ToBp400": string /** `@media screen and (min-width: 18.75rem) and (max-width: 31.2475rem)` */ "bp300ToBp500": string /** `@media screen and (min-width: 18.75rem) and (max-width: 37.4975rem)` */ "bp300ToSm": string /** `@media screen and (min-width: 18.75rem) and (max-width: 37.4975rem)` */ "bp300ToBp600": string /** `@media screen and (min-width: 18.75rem) and (max-width: 43.7475rem)` */ "bp300ToBp700": string /** `@media screen and (min-width: 18.75rem) and (max-width: 49.9975rem)` */ "bp300ToBp800": string /** `@media screen and (min-width: 18.75rem) and (max-width: 56.2475rem)` */ "bp300ToMd": string /** `@media screen and (min-width: 18.75rem) and (max-width: 56.2475rem)` */ "bp300ToBp900": string /** `@media screen and (min-width: 18.75rem) and (max-width: 62.4975rem)` */ "bp300ToBp1000": string /** `@media screen and (min-width: 18.75rem) and (max-width: 68.7475rem)` */ "bp300ToBp1100": string /** `@media screen and (min-width: 18.75rem) and (max-width: 74.9975rem)` */ "bp300ToLg": string /** `@media screen and (min-width: 18.75rem) and (max-width: 74.9975rem)` */ "bp300ToBp1200": string /** `@media screen and (min-width: 18.75rem) and (max-width: 81.2475rem)` */ "bp300ToBp1300": string /** `@media screen and (min-width: 18.75rem) and (max-width: 87.4975rem)` */ "bp300ToXl": string /** `@media screen and (min-width: 18.75rem) and (max-width: 87.4975rem)` */ "bp300ToBp1400": string /** `@media screen and (min-width: 18.75rem) and (max-width: 93.7475rem)` */ "bp300ToBp1500": string /** `@media screen and (min-width: 18.75rem) and (max-width: 95.9975rem)` */ "bp300To2xl": string /** `@media screen and (min-width: 25rem) and (max-width: 31.2475rem)` */ "bp400ToBp500": string /** `@media screen and (min-width: 25rem) and (max-width: 37.4975rem)` */ "bp400ToSm": string /** `@media screen and (min-width: 25rem) and (max-width: 37.4975rem)` */ "bp400ToBp600": string /** `@media screen and (min-width: 25rem) and (max-width: 43.7475rem)` */ "bp400ToBp700": string /** `@media screen and (min-width: 25rem) and (max-width: 49.9975rem)` */ "bp400ToBp800": string /** `@media screen and (min-width: 25rem) and (max-width: 56.2475rem)` */ "bp400ToMd": string /** `@media screen and (min-width: 25rem) and (max-width: 56.2475rem)` */ "bp400ToBp900": string /** `@media screen and (min-width: 25rem) and (max-width: 62.4975rem)` */ "bp400ToBp1000": string /** `@media screen and (min-width: 25rem) and (max-width: 68.7475rem)` */ "bp400ToBp1100": string /** `@media screen and (min-width: 25rem) and (max-width: 74.9975rem)` */ "bp400ToLg": string /** `@media screen and (min-width: 25rem) and (max-width: 74.9975rem)` */ "bp400ToBp1200": string /** `@media screen and (min-width: 25rem) and (max-width: 81.2475rem)` */ "bp400ToBp1300": string /** `@media screen and (min-width: 25rem) and (max-width: 87.4975rem)` */ "bp400ToXl": string /** `@media screen and (min-width: 25rem) and (max-width: 87.4975rem)` */ "bp400ToBp1400": string /** `@media screen and (min-width: 25rem) and (max-width: 93.7475rem)` */ "bp400ToBp1500": string /** `@media screen and (min-width: 25rem) and (max-width: 95.9975rem)` */ "bp400To2xl": string /** `@media screen and (min-width: 31.25rem) and (max-width: 37.4975rem)` */ "bp500ToSm": string /** `@media screen and (min-width: 31.25rem) and (max-width: 37.4975rem)` */ "bp500ToBp600": string /** `@media screen and (min-width: 31.25rem) and (max-width: 43.7475rem)` */ "bp500ToBp700": string /** `@media screen and (min-width: 31.25rem) and (max-width: 49.9975rem)` */ "bp500ToBp800": string /** `@media screen and (min-width: 31.25rem) and (max-width: 56.2475rem)` */ "bp500ToMd": string /** `@media screen and (min-width: 31.25rem) and (max-width: 56.2475rem)` */ "bp500ToBp900": string /** `@media screen and (min-width: 31.25rem) and (max-width: 62.4975rem)` */ "bp500ToBp1000": string /** `@media screen and (min-width: 31.25rem) and (max-width: 68.7475rem)` */ "bp500ToBp1100": string /** `@media screen and (min-width: 31.25rem) and (max-width: 74.9975rem)` */ "bp500ToLg": string /** `@media screen and (min-width: 31.25rem) and (max-width: 74.9975rem)` */ "bp500ToBp1200": string /** `@media screen and (min-width: 31.25rem) and (max-width: 81.2475rem)` */ "bp500ToBp1300": string /** `@media screen and (min-width: 31.25rem) and (max-width: 87.4975rem)` */ "bp500ToXl": string /** `@media screen and (min-width: 31.25rem) and (max-width: 87.4975rem)` */ "bp500ToBp1400": string /** `@media screen and (min-width: 31.25rem) and (max-width: 93.7475rem)` */ "bp500ToBp1500": string /** `@media screen and (min-width: 31.25rem) and (max-width: 95.9975rem)` */ "bp500To2xl": string /** `@media screen and (min-width: 37.5rem) and (max-width: 37.4975rem)` */ "smToBp600": string /** `@media screen and (min-width: 37.5rem) and (max-width: 43.7475rem)` */ "smToBp700": string /** `@media screen and (min-width: 37.5rem) and (max-width: 49.9975rem)` */ "smToBp800": string /** `@media screen and (min-width: 37.5rem) and (max-width: 56.2475rem)` */ "smToMd": string /** `@media screen and (min-width: 37.5rem) and (max-width: 56.2475rem)` */ "smToBp900": string /** `@media screen and (min-width: 37.5rem) and (max-width: 62.4975rem)` */ "smToBp1000": string /** `@media screen and (min-width: 37.5rem) and (max-width: 68.7475rem)` */ "smToBp1100": string /** `@media screen and (min-width: 37.5rem) and (max-width: 74.9975rem)` */ "smToLg": string /** `@media screen and (min-width: 37.5rem) and (max-width: 74.9975rem)` */ "smToBp1200": string /** `@media screen and (min-width: 37.5rem) and (max-width: 81.2475rem)` */ "smToBp1300": string /** `@media screen and (min-width: 37.5rem) and (max-width: 87.4975rem)` */ "smToXl": string /** `@media screen and (min-width: 37.5rem) and (max-width: 87.4975rem)` */ "smToBp1400": string /** `@media screen and (min-width: 37.5rem) and (max-width: 93.7475rem)` */ "smToBp1500": string /** `@media screen and (min-width: 37.5rem) and (max-width: 95.9975rem)` */ "smTo2xl": string /** `@media screen and (min-width: 37.5rem) and (max-width: 43.7475rem)` */ "bp600ToBp700": string /** `@media screen and (min-width: 37.5rem) and (max-width: 49.9975rem)` */ "bp600ToBp800": string /** `@media screen and (min-width: 37.5rem) and (max-width: 56.2475rem)` */ "bp600ToMd": string /** `@media screen and (min-width: 37.5rem) and (max-width: 56.2475rem)` */ "bp600ToBp900": string /** `@media screen and (min-width: 37.5rem) and (max-width: 62.4975rem)` */ "bp600ToBp1000": string /** `@media screen and (min-width: 37.5rem) and (max-width: 68.7475rem)` */ "bp600ToBp1100": string /** `@media screen and (min-width: 37.5rem) and (max-width: 74.9975rem)` */ "bp600ToLg": string /** `@media screen and (min-width: 37.5rem) and (max-width: 74.9975rem)` */ "bp600ToBp1200": string /** `@media screen and (min-width: 37.5rem) and (max-width: 81.2475rem)` */ "bp600ToBp1300": string /** `@media screen and (min-width: 37.5rem) and (max-width: 87.4975rem)` */ "bp600ToXl": string /** `@media screen and (min-width: 37.5rem) and (max-width: 87.4975rem)` */ "bp600ToBp1400": string /** `@media screen and (min-width: 37.5rem) and (max-width: 93.7475rem)` */ "bp600ToBp1500": string /** `@media screen and (min-width: 37.5rem) and (max-width: 95.9975rem)` */ "bp600To2xl": string /** `@media screen and (min-width: 43.75rem) and (max-width: 49.9975rem)` */ "bp700ToBp800": string /** `@media screen and (min-width: 43.75rem) and (max-width: 56.2475rem)` */ "bp700ToMd": string /** `@media screen and (min-width: 43.75rem) and (max-width: 56.2475rem)` */ "bp700ToBp900": string /** `@media screen and (min-width: 43.75rem) and (max-width: 62.4975rem)` */ "bp700ToBp1000": string /** `@media screen and (min-width: 43.75rem) and (max-width: 68.7475rem)` */ "bp700ToBp1100": string /** `@media screen and (min-width: 43.75rem) and (max-width: 74.9975rem)` */ "bp700ToLg": string /** `@media screen and (min-width: 43.75rem) and (max-width: 74.9975rem)` */ "bp700ToBp1200": string /** `@media screen and (min-width: 43.75rem) and (max-width: 81.2475rem)` */ "bp700ToBp1300": string /** `@media screen and (min-width: 43.75rem) and (max-width: 87.4975rem)` */ "bp700ToXl": string /** `@media screen and (min-width: 43.75rem) and (max-width: 87.4975rem)` */ "bp700ToBp1400": string /** `@media screen and (min-width: 43.75rem) and (max-width: 93.7475rem)` */ "bp700ToBp1500": string /** `@media screen and (min-width: 43.75rem) and (max-width: 95.9975rem)` */ "bp700To2xl": string /** `@media screen and (min-width: 50rem) and (max-width: 56.2475rem)` */ "bp800ToMd": string /** `@media screen and (min-width: 50rem) and (max-width: 56.2475rem)` */ "bp800ToBp900": string /** `@media screen and (min-width: 50rem) and (max-width: 62.4975rem)` */ "bp800ToBp1000": string /** `@media screen and (min-width: 50rem) and (max-width: 68.7475rem)` */ "bp800ToBp1100": string /** `@media screen and (min-width: 50rem) and (max-width: 74.9975rem)` */ "bp800ToLg": string /** `@media screen and (min-width: 50rem) and (max-width: 74.9975rem)` */ "bp800ToBp1200": string /** `@media screen and (min-width: 50rem) and (max-width: 81.2475rem)` */ "bp800ToBp1300": string /** `@media screen and (min-width: 50rem) and (max-width: 87.4975rem)` */ "bp800ToXl": string /** `@media screen and (min-width: 50rem) and (max-width: 87.4975rem)` */ "bp800ToBp1400": string /** `@media screen and (min-width: 50rem) and (max-width: 93.7475rem)` */ "bp800ToBp1500": string /** `@media screen and (min-width: 50rem) and (max-width: 95.9975rem)` */ "bp800To2xl": string /** `@media screen and (min-width: 56.25rem) and (max-width: 56.2475rem)` */ "mdToBp900": string /** `@media screen and (min-width: 56.25rem) and (max-width: 62.4975rem)` */ "mdToBp1000": string /** `@media screen and (min-width: 56.25rem) and (max-width: 68.7475rem)` */ "mdToBp1100": string /** `@media screen and (min-width: 56.25rem) and (max-width: 74.9975rem)` */ "mdToLg": string /** `@media screen and (min-width: 56.25rem) and (max-width: 74.9975rem)` */ "mdToBp1200": string /** `@media screen and (min-width: 56.25rem) and (max-width: 81.2475rem)` */ "mdToBp1300": string /** `@media screen and (min-width: 56.25rem) and (max-width: 87.4975rem)` */ "mdToXl": string /** `@media screen and (min-width: 56.25rem) and (max-width: 87.4975rem)` */ "mdToBp1400": string /** `@media screen and (min-width: 56.25rem) and (max-width: 93.7475rem)` */ "mdToBp1500": string /** `@media screen and (min-width: 56.25rem) and (max-width: 95.9975rem)` */ "mdTo2xl": string /** `@media screen and (min-width: 56.25rem) and (max-width: 62.4975rem)` */ "bp900ToBp1000": string /** `@media screen and (min-width: 56.25rem) and (max-width: 68.7475rem)` */ "bp900ToBp1100": string /** `@media screen and (min-width: 56.25rem) and (max-width: 74.9975rem)` */ "bp900ToLg": string /** `@media screen and (min-width: 56.25rem) and (max-width: 74.9975rem)` */ "bp900ToBp1200": string /** `@media screen and (min-width: 56.25rem) and (max-width: 81.2475rem)` */ "bp900ToBp1300": string /** `@media screen and (min-width: 56.25rem) and (max-width: 87.4975rem)` */ "bp900ToXl": string /** `@media screen and (min-width: 56.25rem) and (max-width: 87.4975rem)` */ "bp900ToBp1400": string /** `@media screen and (min-width: 56.25rem) and (max-width: 93.7475rem)` */ "bp900ToBp1500": string /** `@media screen and (min-width: 56.25rem) and (max-width: 95.9975rem)` */ "bp900To2xl": string /** `@media screen and (min-width: 62.5rem) and (max-width: 68.7475rem)` */ "bp1000ToBp1100": string /** `@media screen and (min-width: 62.5rem) and (max-width: 74.9975rem)` */ "bp1000ToLg": string /** `@media screen and (min-width: 62.5rem) and (max-width: 74.9975rem)` */ "bp1000ToBp1200": string /** `@media screen and (min-width: 62.5rem) and (max-width: 81.2475rem)` */ "bp1000ToBp1300": string /** `@media screen and (min-width: 62.5rem) and (max-width: 87.4975rem)` */ "bp1000ToXl": string /** `@media screen and (min-width: 62.5rem) and (max-width: 87.4975rem)` */ "bp1000ToBp1400": string /** `@media screen and (min-width: 62.5rem) and (max-width: 93.7475rem)` */ "bp1000ToBp1500": string /** `@media screen and (min-width: 62.5rem) and (max-width: 95.9975rem)` */ "bp1000To2xl": string /** `@media screen and (min-width: 68.75rem) and (max-width: 74.9975rem)` */ "bp1100ToLg": string /** `@media screen and (min-width: 68.75rem) and (max-width: 74.9975rem)` */ "bp1100ToBp1200": string /** `@media screen and (min-width: 68.75rem) and (max-width: 81.2475rem)` */ "bp1100ToBp1300": string /** `@media screen and (min-width: 68.75rem) and (max-width: 87.4975rem)` */ "bp1100ToXl": string /** `@media screen and (min-width: 68.75rem) and (max-width: 87.4975rem)` */ "bp1100ToBp1400": string /** `@media screen and (min-width: 68.75rem) and (max-width: 93.7475rem)` */ "bp1100ToBp1500": string /** `@media screen and (min-width: 68.75rem) and (max-width: 95.9975rem)` */ "bp1100To2xl": string /** `@media screen and (min-width: 75rem) and (max-width: 74.9975rem)` */ "lgToBp1200": string /** `@media screen and (min-width: 75rem) and (max-width: 81.2475rem)` */ "lgToBp1300": string /** `@media screen and (min-width: 75rem) and (max-width: 87.4975rem)` */ "lgToXl": string /** `@media screen and (min-width: 75rem) and (max-width: 87.4975rem)` */ "lgToBp1400": string /** `@media screen and (min-width: 75rem) and (max-width: 93.7475rem)` */ "lgToBp1500": string /** `@media screen and (min-width: 75rem) and (max-width: 95.9975rem)` */ "lgTo2xl": string /** `@media screen and (min-width: 75rem) and (max-width: 81.2475rem)` */ "bp1200ToBp1300": string /** `@media screen and (min-width: 75rem) and (max-width: 87.4975rem)` */ "bp1200ToXl": string /** `@media screen and (min-width: 75rem) and (max-width: 87.4975rem)` */ "bp1200ToBp1400": string /** `@media screen and (min-width: 75rem) and (max-width: 93.7475rem)` */ "bp1200ToBp1500": string /** `@media screen and (min-width: 75rem) and (max-width: 95.9975rem)` */ "bp1200To2xl": string /** `@media screen and (min-width: 81.25rem) and (max-width: 87.4975rem)` */ "bp1300ToXl": string /** `@media screen and (min-width: 81.25rem) and (max-width: 87.4975rem)` */ "bp1300ToBp1400": string /** `@media screen and (min-width: 81.25rem) and (max-width: 93.7475rem)` */ "bp1300ToBp1500": string /** `@media screen and (min-width: 81.25rem) and (max-width: 95.9975rem)` */ "bp1300To2xl": string /** `@media screen and (min-width: 87.5rem) and (max-width: 87.4975rem)` */ "xlToBp1400": string /** `@media screen and (min-width: 87.5rem) and (max-width: 93.7475rem)` */ "xlToBp1500": string /** `@media screen and (min-width: 87.5rem) and (max-width: 95.9975rem)` */ "xlTo2xl": string /** `@media screen and (min-width: 87.5rem) and (max-width: 93.7475rem)` */ "bp1400ToBp1500": string /** `@media screen and (min-width: 87.5rem) and (max-width: 95.9975rem)` */ "bp1400To2xl": string /** `@media screen and (min-width: 93.75rem) and (max-width: 95.9975rem)` */ "bp1500To2xl": string /** `@container (min-width: 20rem)` */ "@/xs": string /** `@container (min-width: 24rem)` */ "@/sm": string /** `@container (min-width: 28rem)` */ "@/md": string /** `@container (min-width: 32rem)` */ "@/lg": string /** `@container (min-width: 36rem)` */ "@/xl": string /** `@container (min-width: 42rem)` */ "@/2xl": string /** `@container (min-width: 48rem)` */ "@/3xl": string /** `@container (min-width: 56rem)` */ "@/4xl": string /** `@container (min-width: 64rem)` */ "@/5xl": string /** `@container (min-width: 72rem)` */ "@/6xl": string /** `@container (min-width: 80rem)` */ "@/7xl": string /** `@container (min-width: 90rem)` */ "@/8xl": string /** The base (=no conditions) styles to apply */ "base": string } export type ConditionalValue = | V | Array | { [K in keyof Conditions]?: ConditionalValue } export type Nested

= P & { [K in Selectors]?: Nested

} & { [K in AnySelector]?: Nested

} & { [K in keyof Conditions]?: Nested

}