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