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