/* eslint-disable */ import type { ConditionalValue } from '../types/index.d.mts'; import type { DistributiveOmit, Pretty } from '../types/system-types.d.mts'; interface ElementNodeVariant { } type ElementNodeVariantMap = { [key in keyof ElementNodeVariant]: Array } export type ElementNodeVariantProps = { [key in keyof ElementNodeVariant]?: ConditionalValue | undefined } export interface ElementNodeRecipe { __type: ElementNodeVariantProps (props?: ElementNodeVariantProps): string raw: (props?: ElementNodeVariantProps) => ElementNodeVariantProps variantMap: ElementNodeVariantMap variantKeys: Array splitVariantProps(props: Props): [ElementNodeVariantProps, Pretty>] getVariantProps: (props?: ElementNodeVariantProps) => ElementNodeVariantProps } export declare const elementNode: ElementNodeRecipe