import type { TemplateVariable } from '../../types'; export interface MessageInputProps { value: string; variables: TemplateVariable[]; onChange: (value: string) => void; onBlur: () => void; readOnly?: boolean; multiline?: boolean; error?: boolean; } export declare function MessageInput({ value, variables, onChange, onBlur, multiline, error, }: MessageInputProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=MessageInput.d.ts.map