import * as React from 'react'; interface ISendButton { onSend: () => void; onSchedule?: () => void; buttonLabel?: string; dropdownActions?: Array; } export interface IBoardDropdownAction { onPress: () => void; title: string; icon: React.ReactNode; } export declare const SendButton: (props: ISendButton) => React.JSX.Element; export {};