import type { GraphClientConfig } from "../lib/graph-client.js"; export interface DraftSendArgs { draftId: string; } export interface DraftSendResult { status: "sent"; draftId: string; httpStatus: number; } /** * Send an existing draft via Graph `POST /me/messages/{id}/send` (empty body). * Graph consumes the draft and returns 202. Success is asserted on the 202 * status. The draft-created / draft-sent id pairing in the logs is the orphan * diagnostic: a draft-created id with no matching draft-sent is an orphan. */ export declare function runDraftSend(config: GraphClientConfig, args: DraftSendArgs): Promise; //# sourceMappingURL=draft-send.d.ts.map