import { ConfigService } from '@nestjs/config';
export declare class EmailService {
    private configService;
    constructor(configService: ConfigService);
    sendEmail(serviceId: string, templateId: string, to: string, data: any): Promise<any>;
}
