import { Plan } from './Plan';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** The container registry capability for a single region */
export interface Capability {
    /** Available plans in the region */
    plans: Plan[];
    /** The region name */
    regionName: string;
    /** The type of region ("REGION-1-AZ" or "REGION-3-AZ") */
    regionType: RegionTypeEnum;
}
//# sourceMappingURL=Capability.d.ts.map