/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface CheckboxSlotRecipeVariant { } type CheckboxSlotRecipeVariantMap = { [key in keyof CheckboxSlotRecipeVariant]: Array } type CheckboxSlotRecipeSlot = "root" | "input" | "icon" | "label" | "indeterminate" export type CheckboxSlotRecipeVariantProps = { [key in keyof CheckboxSlotRecipeVariant]?: ConditionalValue | undefined } export interface CheckboxSlotRecipeRecipe { __slot: CheckboxSlotRecipeSlot __type: CheckboxSlotRecipeVariantProps (props?: CheckboxSlotRecipeVariantProps): Pretty> raw: (props?: CheckboxSlotRecipeVariantProps) => CheckboxSlotRecipeVariantProps variantMap: CheckboxSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [CheckboxSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: CheckboxSlotRecipeVariantProps) => CheckboxSlotRecipeVariantProps } /** * Slot class created for the MFUI Checkbox component. */ export declare const checkboxSlotRecipe: CheckboxSlotRecipeRecipe