import React from 'react'; interface ISendButton { onPress: () => void; boardStyle?: string; loading?: boolean; noBorders?: boolean; } export declare const SendButton: React.FC; export {};