import { type ReactNode } from 'react';
import ChatInputActionBar from './components/ChatInputActionBar';
import ChatInputAreaInner from './components/ChatInputAreaInner';
import ChatSendButton from './components/ChatSendButton';
import type { ChatInputAreaProps } from './type';
interface IChatHeader {
    (props: ChatInputAreaProps): ReactNode;
    ActionBar: typeof ChatInputActionBar;
    Inner: typeof ChatInputAreaInner;
    SendButton: typeof ChatSendButton;
}
declare const ChatInputArea: IChatHeader;
export default ChatInputArea;
export { default as ChatInputActionBar } from './components/ChatInputActionBar';
export { default as ChatInputAreaInner } from './components/ChatInputAreaInner';
export { default as ChatSendButton } from './components/ChatSendButton';
export type * from './type';
