import { ConfigService } from "@nestjs/config";
export declare class Msg91Provider {
    private readonly config;
    private readonly apiKey;
    private readonly fromEmail;
    constructor(config: ConfigService);
    send(to: string, templateId: string, variables: Record<string, any>, replyToEmail?: string): Promise<import("axios").AxiosResponse<any, any, {}>>;
}
