import { IZone } from "./IZone";
export declare class ZoneService {
    private readonly zoneRepository;
    constructor();
    getZone(zoneId: string): Promise<IZone | null>;
}
