/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface IconVariant { /** * @default "md" */ size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" } type IconVariantMap = { [key in keyof IconVariant]: Array } export type IconVariantProps = { [key in keyof IconVariant]?: ConditionalValue | undefined } export interface IconRecipe { __type: IconVariantProps (props?: IconVariantProps): string raw: (props?: IconVariantProps) => IconVariantProps variantMap: IconVariantMap variantKeys: Array splitVariantProps(props: Props): [IconVariantProps, Pretty>] getVariantProps: (props?: IconVariantProps) => IconVariantProps } export declare const icon: IconRecipe