/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface CodeVariant { /** * @default "outline" */ variant: "outline" | "ghost" /** * @default "md" */ size: "sm" | "md" | "lg" } type CodeVariantMap = { [key in keyof CodeVariant]: Array } export type CodeVariantProps = { [key in keyof CodeVariant]?: ConditionalValue | undefined } export interface CodeRecipe { __type: CodeVariantProps (props?: CodeVariantProps): string raw: (props?: CodeVariantProps) => CodeVariantProps variantMap: CodeVariantMap variantKeys: Array splitVariantProps(props: Props): [CodeVariantProps, Pretty>] getVariantProps: (props?: CodeVariantProps) => CodeVariantProps } export declare const code: CodeRecipe