import React from 'react'; interface SendButtonProps { disabled?: boolean; onClick: (e: React.MouseEvent) => void; } export declare const SendButton: ({ disabled, onClick }: SendButtonProps) => React.JSX.Element; export {};