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