import type { BoxProps, BoxStyleProps } from "@twilio-paste/core/box"; import type { ContentEditableProps, LexicalComposerProps, LexicalEditor, OnChangeFunction } from "@twilio-paste/lexical-library"; import * as React from "react"; export interface ChatComposerProps extends Omit { children?: LexicalComposerProps["children"]; config: LexicalComposerProps["initialConfig"]; element?: BoxProps["element"]; maxHeight?: BoxStyleProps["maxHeight"]; fontSize?: BoxStyleProps["fontSize"]; lineHeight?: BoxStyleProps["lineHeight"]; initialValue?: string; disabled?: boolean; onChange?: OnChangeFunction; editorInstanceRef?: React.MutableRefObject; } export declare const ChatComposer: React.ForwardRefExoticComponent>;