import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/textarea/types.d.ts interface TextareaProps extends BaseProps, Omit, 'onChange'> { rows?: number; limit?: number; counter?: (count?: number) => React.ReactNode; defaultValue?: string; value?: string; onChange?: (value: string, event: React.ChangeEvent) => void; disabled?: boolean; /** * Whether the textarea is resizable. */ resizable?: boolean; /** * Custom resize handle element rendered at the bottom-right corner for vertical resizing. * When provided, replaces the default resize grip icon. */ resizeHandle?: React.ReactNode; } //#endregion export { TextareaProps }; //# sourceMappingURL=types.d.ts.map