import { Plan } from './Plan';
/** The container registry capability for a single region */
export interface Capability {
    /** Available plans in the region */
    plans: Plan[];
    /** The region name */
    regionName: string;
}
//# sourceMappingURL=Capability.d.ts.map