import type { AegisAuthConfig } from "../config";
export interface SendEmailOptions {
    from?: string;
    to: string | string[];
    subject: string;
    html: string;
    config: Required<AegisAuthConfig>;
}
export declare function sendEmail(options: SendEmailOptions): Promise<import("resend").CreateEmailResponse>;
//# sourceMappingURL=sendEmail.d.ts.map