import { type DraftComposeParams } from "../lib/compose.js"; interface EditParams extends DraftComposeParams { accountId: string; mailbox?: string; /** Drafts-folder UID of the draft to replace (fast-path hint). */ targetUid: number; /** * The stored draft's own Message-ID, from the prior email-draft / * email-draft-edit confirmation. Used to re-locate the draft when Gmail has * renumbered its UID. Distinct from `messageId`, which is the parent thread * being replied to. */ draftMessageId?: string; } export declare function emailDraftEdit(params: EditParams): Promise; export {}; //# sourceMappingURL=email-draft-edit.d.ts.map