/// <reference types="react" />
import { ActionIconProps } from "../../ActionIcon";
export interface MobileChatSendButtonProps extends Omit<ActionIconProps, 'loading'> {
    loading?: boolean;
    onSend?: () => void;
    onStop?: () => void;
}
declare const MobileChatSendButton: import("react").NamedExoticComponent<MobileChatSendButtonProps>;
export default MobileChatSendButton;
