import type { Queue } from 'bull';
import { TenantConnectionManager } from '../tenant/tenant-connection.manager';
export declare class ZnsCampaignScheduler {
    private readonly znsCampaignQueue;
    private readonly tenantConnectionManager;
    constructor(znsCampaignQueue: Queue, tenantConnectionManager: TenantConnectionManager);
    handleCron(): Promise<void>;
}
