import { ChatInputActionBarProps, ChatInputAreaInnerProps, ChatInputAreaProps, ChatSendButtonProps } from "./type.mjs";
import { ChatInputActionBar } from "./components/ChatInputActionBar.mjs";
import { ChatInputAreaInner } from "./components/ChatInputAreaInner.mjs";
import { ChatSendButton } from "./components/ChatSendButton.mjs";
import { ReactNode } from "react";

//#region src/chat/ChatInputArea/index.d.ts
interface IChatHeader {
  (props: ChatInputAreaProps): ReactNode;
  ActionBar: typeof ChatInputActionBar;
  Inner: typeof ChatInputAreaInner;
  SendButton: typeof ChatSendButton;
}
declare const ChatInputArea: IChatHeader;
//#endregion
export { ChatInputArea };
//# sourceMappingURL=index.d.mts.map