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