import * as React from "react"; import { type VariableEditorBaseProps } from "./shared"; export interface VariableTextareaProps extends VariableEditorBaseProps { /** Whether to show the variable toolbar */ showToolbar?: boolean; } /** * A textarea-like input that renders {{variable}} patterns as styled chips. * Uses a minimal TipTap editor under the hood for rich content rendering. */ export declare const VariableTextarea: React.ForwardRefExoticComponent>;