/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface ButtonVariant { /** * @default "solid" */ variant: "solid" | "outline" | "ghost" | "link" | "subtle" /** * @default "md" */ size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" } type ButtonVariantMap = { [key in keyof ButtonVariant]: Array } export type ButtonVariantProps = { [key in keyof ButtonVariant]?: ConditionalValue | undefined } export interface ButtonRecipe { __type: ButtonVariantProps (props?: ButtonVariantProps): string raw: (props?: ButtonVariantProps) => ButtonVariantProps variantMap: ButtonVariantMap variantKeys: Array splitVariantProps(props: Props): [ButtonVariantProps, Pretty>] getVariantProps: (props?: ButtonVariantProps) => ButtonVariantProps } export declare const button: ButtonRecipe