import React, { ReactNode } from 'react'; export declare const ChatFooter: ({ onSend, children }: { onSend: (count: number) => void; children?: ReactNode; }) => React.JSX.Element | null;