import { Repository } from 'typeorm';
import { AppUser } from 'src/app_users/entities/app_user.entity';
import { SendNotificationService } from 'src/common/push-notification';
export declare class CronService {
    private readonly userRepo;
    private readonly sendNotificationService;
    constructor(userRepo: Repository<AppUser>, sendNotificationService: SendNotificationService);
    handleDailyZeroStepNotification(): Promise<void>;
}
