interface SendOptions { to?: string; subject?: string; body?: string; html?: boolean; from?: string; file?: string; } export declare function sendCommand(options: SendOptions): Promise; export {};