export interface OutreachSendDeps { backendUrl: string; token: string; writeStdout: (s: string) => void; writeStderr: (s: string) => void; } export declare function handleOutreachSend(stdinJson: string, deps: OutreachSendDeps): Promise; /** * Entrypoint for the CLI's command registration. Reads stdin, resolves * backend URL + token from the CLI context, invokes handleOutreachSend. */ export declare function outreachSendCommand(ctx: { stdin: NodeJS.ReadableStream; backendUrl: string; token: string; }): Promise; //# sourceMappingURL=send.d.ts.map