123456789101112131415161718192021222324252627282930 |
- import * as React from 'react';
- import type { ResizableTextAreaRef } from './interface';
- declare const ResizableTextArea: React.ForwardRefExoticComponent<Omit<import("./interface").HTMLTextareaProps, "value" | "onResize"> & {
- value?: string | number | bigint | readonly string[];
- prefixCls?: string;
- className?: string;
- style?: React.CSSProperties;
- autoSize?: boolean | import("./interface").AutoSizeType;
- onPressEnter?: React.KeyboardEventHandler<HTMLTextAreaElement>;
- onResize?: (size: {
- width: number;
- height: number;
- }) => void;
- classNames?: {
- affixWrapper?: string;
- prefix?: string;
- suffix?: string;
- groupWrapper?: string;
- wrapper?: string;
- variant?: string;
- } & {
- textarea?: string;
- count?: string;
- };
- styles?: {
- textarea?: React.CSSProperties;
- count?: React.CSSProperties;
- };
- } & Pick<import("rc-input/lib/interface").BaseInputProps, "allowClear" | "suffix"> & Pick<import("rc-input").InputProps, "showCount" | "count" | "onClear"> & React.RefAttributes<ResizableTextAreaRef>>;
- export default ResizableTextArea;
|