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