import { HttpService } from '@nestjs/axios';
export declare class NotifyService {
    private readonly httpService;
    constructor(httpService: HttpService);
    sendPostRequest(emailDestinaires: string, contenu: string, object: string): Promise<any>;
}
