import { RecipeVariants } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; import { dropdownStyles } from './rarui-dropdown.css.js'; import { StandardLonghandProperties } from '../../../types/css.types.js'; import { AddDollar, Conditions } from '../../../types/utils.types.js'; import { zIndexProperties } from '../../../properties/css.js'; type DropdownVariants = NonNullable & RecipeVariants>; type DropdownDynamicProperties = Pick; interface DropdownSprinkle extends DropdownDynamicProperties { /** * The zIndex property specifies the stack order of the box. */ zIndex?: AddDollar | Conditions>; } export type { DropdownDynamicProperties, DropdownSprinkle, DropdownVariants };