/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface CheckboxVariant { /** * @default "md" */ size: "sm" | "md" | "lg" } type CheckboxVariantMap = { [key in keyof CheckboxVariant]: Array } export type CheckboxVariantProps = { [key in keyof CheckboxVariant]?: ConditionalValue | undefined } export interface CheckboxRecipe { __type: CheckboxVariantProps (props?: CheckboxVariantProps): Pretty> raw: (props?: CheckboxVariantProps) => CheckboxVariantProps variantMap: CheckboxVariantMap variantKeys: Array splitVariantProps(props: Props): [CheckboxVariantProps, Pretty>] getVariantProps: (props?: CheckboxVariantProps) => CheckboxVariantProps } export declare const checkbox: CheckboxRecipe