import { RecipeVariants } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; import { modalStyles } from './rarui-modal.css.js'; import { StandardLonghandProperties } from '../../../types/css.types.js'; import { AddDollar, Conditions } from '../../../types/utils.types.js'; import { zIndexProperties } from '../../../properties/css.js'; type ModalVariants = Omit>, "selected">; type ModalDynamicProperties = Pick; interface ModalSprinkle extends ModalDynamicProperties { /** * The zIndex property specifies the stack order of the box. */ zIndex?: AddDollar | Conditions>; } export type { ModalSprinkle, ModalVariants };