export interface SendEmailOptions {
    to: string;
    subject: string;
    html?: string;
    text?: string;
    from?: string;
}
/**
 * Envía un correo electrónico interno del sistema Skailan.
 * @param options Opciones de envío (to, subject, html, text, from)
 */
export declare function sendEmail(options: SendEmailOptions): Promise<import("resend").CreateEmailResponse>;
/**
 * Envía un correo de verificación de cuenta interna.
 * @param userEmail Email del usuario
 * @param token Token de verificación
 */
export declare function sendVerificationEmail(userEmail: string, token: string): Promise<import("resend").CreateEmailResponse>;
//# sourceMappingURL=emailService.d.ts.map