import type { GraphClientConfig } from "../lib/graph-client.js"; /** * Move each named message to Deleted Items (POST /me/messages/{id}/move with * destinationId "deleteditems"). Recoverable — never hard-deletes, never * expunges. A message already gone (Graph 404) is counted not-moved without * failing the rest; any other Graph error aborts the batch. */ export declare function runMailDelete(config: GraphClientConfig, args: { ids: string[]; }): Promise<{ moved: string[]; notMoved: string[]; }>; //# sourceMappingURL=mail-delete.d.ts.map