/** * Framework-level agent action for sending transactional/notification emails * via the configured core email transport (Resend or SendGrid). * * Registered as a native tool in every template. sendEmail() checks the * scoped Resend/SendGrid configuration at call time. * * SAFETY: the action description instructs the agent to draft-first and only * send when the user explicitly confirms, matching the mail template convention. * * COLLISION: the mail template registers its own richer "send-email" action. * The template's registration comes after this one in the spread, so it wins * when both would be present under the same key. To avoid any ambiguity this * action is keyed "core-send-email" which is distinct from the template name. */ import type { ActionEntry } from "../agent/production-agent.js"; export declare function createCoreEmailActionEntries(): Record; //# sourceMappingURL=email-actions.d.ts.map