import type { BoxProps } from "@twilio-paste/core/box"; import * as React from "react"; export interface ChatComposerContainerProps { children?: React.ReactNode; variant?: "default" | "contained"; element?: BoxProps["element"]; maxHeight?: BoxProps["maxHeight"]; } export declare const ChatComposerContainer: React.ForwardRefExoticComponent>;