import React from 'react';
export type SendButtonProps = {
    sendMessage: (event: React.BaseSyntheticEvent) => void;
} & React.ComponentProps<'button'>;
export declare const SendButton: ({ sendMessage, ...rest }: SendButtonProps) => React.JSX.Element;
