import { TenantConnectionManager } from '../tenant/tenant-connection.manager';
import type { Queue } from 'bull';
export declare class ZnsTemplateService {
    private readonly tenantConnectionManager;
    private readonly queue;
    constructor(tenantConnectionManager: TenantConnectionManager, queue: Queue);
    fetchTemplatesByTenant(tenantId: string, oaId?: string, accessToken?: string): Promise<any>;
    syncTemplates(tenant: string): Promise<void>;
}
