/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface ToggleSwitchSlotRecipeVariant { } type ToggleSwitchSlotRecipeVariantMap = { [key in keyof ToggleSwitchSlotRecipeVariant]: Array } type ToggleSwitchSlotRecipeSlot = "root" | "input" | "handle" export type ToggleSwitchSlotRecipeVariantProps = { [key in keyof ToggleSwitchSlotRecipeVariant]?: ConditionalValue | undefined } export interface ToggleSwitchSlotRecipeRecipe { __slot: ToggleSwitchSlotRecipeSlot __type: ToggleSwitchSlotRecipeVariantProps (props?: ToggleSwitchSlotRecipeVariantProps): Pretty> raw: (props?: ToggleSwitchSlotRecipeVariantProps) => ToggleSwitchSlotRecipeVariantProps variantMap: ToggleSwitchSlotRecipeVariantMap variantKeys: Array splitVariantProps(props: Props): [ToggleSwitchSlotRecipeVariantProps, Pretty>] getVariantProps: (props?: ToggleSwitchSlotRecipeVariantProps) => ToggleSwitchSlotRecipeVariantProps } /** * Slot class created for the MFUI ToggleSwitch component. */ export declare const toggleSwitchSlotRecipe: ToggleSwitchSlotRecipeRecipe