import { RecipeVariants } from '../../../node_modules/@vanilla-extract/recipes/dist/vanilla-extract-recipes.cjs.d.js'; import { AddDollar } from '../../../types/utils.types.js'; import { progressStyles, progressColorProperties } from './rarui-progress.css.js'; type ProgressVariants = NonNullable>; interface ProgressSprinkle { /** * Specifies the color of the progress. * This prop accepts one of the following values: "$info", "$success" or "$brand" * @default $info * @examples ["$brand", { xs: "$brand", md: "$info" }] */ color?: AddDollar; } export type { ProgressSprinkle, ProgressVariants };