import type { ISubnet } from '../domain'; export declare class SubnetReader { private static cache; static listSubnets(): PromiseLike; static listSubnetsByProvider(cloudProvider: string): PromiseLike; static getSubnetByIdAndProvider(subnetId: string, cloudProvider?: string): PromiseLike; static getSubnetPurpose(subnetId: string): PromiseLike; }