import { KanbanLeadSource } from './entities/kanban-lead-source.entity';
import { BaseTenantService } from '@/common/base/service/base-crud.service';
import { TenantConnectionService } from '../tenant/tenant-connection.service';
export declare class KanbanLeadSourceService extends BaseTenantService<KanbanLeadSource> {
    protected tenantConnectionService: TenantConnectionService;
    protected entity: typeof KanbanLeadSource;
    constructor(tenantConnectionService: TenantConnectionService);
}
