export declare const MESH_JSON = "mesh.json";
export interface MeshJson {
    tenant: string;
    platform: string;
}
export declare function isValidTenantName(value: string): boolean;
export declare function parseMeshJson(content: string): MeshJson | null;
export declare function findMeshJson(startDir: string): {
    path: string;
    data: MeshJson;
} | null;
export declare function writeMeshJson(rootDir: string, data: MeshJson): string;
