/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface BadgeVariant { /** * @default "subtle" */ variant: "solid" | "subtle" | "outline" /** * @default "md" */ size: "sm" | "md" | "lg" } type BadgeVariantMap = { [key in keyof BadgeVariant]: Array } export type BadgeVariantProps = { [key in keyof BadgeVariant]?: ConditionalValue | undefined } export interface BadgeRecipe { __type: BadgeVariantProps (props?: BadgeVariantProps): string raw: (props?: BadgeVariantProps) => BadgeVariantProps variantMap: BadgeVariantMap variantKeys: Array splitVariantProps(props: Props): [BadgeVariantProps, Pretty>] getVariantProps: (props?: BadgeVariantProps) => BadgeVariantProps } export declare const badge: BadgeRecipe