import { Repository } from 'typeorm';
import { GlobalCourierTenant } from './entities/global-courier-tenant.entity';
export declare class GlobalCourierTenantService {
    private readonly repo;
    constructor(repo: Repository<GlobalCourierTenant>);
    findByCode(code: string): Promise<GlobalCourierTenant | null>;
    create(data: {
        courier_code: string;
        tenant_subdomain: string;
        courier_id: number;
    }): Promise<GlobalCourierTenant>;
    deleteByCode(code: string): Promise<void>;
    deleteByCourierId(courierId: number): Promise<void>;
}
