/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface FieldVariant { } type FieldVariantMap = { [key in keyof FieldVariant]: Array } export type FieldVariantProps = { [key in keyof FieldVariant]?: ConditionalValue | undefined } export interface FieldRecipe { __type: FieldVariantProps (props?: FieldVariantProps): Pretty> raw: (props?: FieldVariantProps) => FieldVariantProps variantMap: FieldVariantMap variantKeys: Array splitVariantProps(props: Props): [FieldVariantProps, Pretty>] getVariantProps: (props?: FieldVariantProps) => FieldVariantProps } export declare const field: FieldRecipe