import { KpiDaily } from './entities/kpi-daily.entity';
import { TenantConnectionService } from '../tenant/tenant-connection.service';
import { KpiWebhookDto } from './dto/kpi-webhook.dto';
import { BaseTenantService } from '@/common/base/service/base-crud.service';
export declare class KpiWebhookService extends BaseTenantService<KpiDaily> {
    protected tenantConnectionService: TenantConnectionService;
    protected entity: typeof KpiDaily;
    constructor(tenantConnectionService: TenantConnectionService);
    syncWebhook(dto: KpiWebhookDto): Promise<{
        success: boolean;
    }>;
    resolveUserId(user: number | string): Promise<number>;
}
