import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Textarea = "ax-textarea"; type TextareaProps = BoxProps & { "addonPointerEvents"?: "none" | "auto"; "addon-pointer-events"?: "none" | "auto"; "maxRows"?: 1 | 2 | 3 | 4 | 5; "max-rows"?: 1 | 2 | 3 | 4 | 5; "resize"?: "none" | "auto" | "vertical"; "addonAfter"?: string | number | false | true; "addon-after"?: string; "addonBefore"?: string | number | false | true; "addon-before"?: string; "rows"?: number; "size"?: never; "disabled"?: false | true; "placeholder"?: string; "onValueChange"?: (value: string) => void; "name"?: string; "error"?: false | true; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Textarea]: TextareaProps & Omit<(JSXBase.IntrinsicElements["textarea"]), keyof TextareaProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Textarea]: TextareaProps & Omit<(ComponentPropsWithoutRef<"textarea">), keyof TextareaProps>; } } } export { Textarea }; export type { TextareaProps };