import React from 'react'; /** Props for when using standard PromptInput. */ interface TextareaModeProps { textareaRef: React.RefObject; controlId?: string; textareaAttributes: React.TextareaHTMLAttributes; nativeTextareaAttributes?: Record; } export default function TextareaMode({ textareaRef, controlId, textareaAttributes, nativeTextareaAttributes }: TextareaModeProps): JSX.Element; export {};