import { RecipeVariants } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; import { zIndexProperties } from '../../../properties/css.js'; import { StandardLonghandProperties } from '../../../types/css.types.js'; import { AddDollar, Conditions } from '../../../types/utils.types.js'; import { sidebarStyles, sidebarPaddingProperties } from './rarui-sidebar.css.js'; type SidebarVariants = RecipeVariants; type SidebarDynamicProperties = Pick; interface SidebarSprinkle extends SidebarDynamicProperties { /** * The **`padding`** CSS shorthand property sets the padding area on all four sides of an element at once. * @default small */ padding?: AddDollar | Conditions>; /** * The zIndex property specifies the stack order of the box. */ zIndex?: AddDollar | Conditions>; } export type { SidebarSprinkle, SidebarVariants };