import { ConfigService } from '@nestjs/config';
import { NotificationsService } from '../notifications/notifications.service';
import { DemoRequestDto } from './leads.controller';
export declare class LeadsService {
    private readonly config;
    private readonly notifications;
    constructor(config: ConfigService, notifications: NotificationsService);
    requestDemo(dto: DemoRequestDto): Promise<{
        ok: boolean;
    }>;
}
