import { Features } from './Features';
import { Limits } from './Limits';
/** Plan of the registry */
export interface Plan {
    /** Plan code from catalog */
    code: string;
    /** Plan creation date */
    createdAt: string;
    /** Features of the plan */
    features: Features;
    /** Plan ID */
    id: string;
    /** Plan name */
    name: string;
    /** Container registry limits */
    registryLimits: Limits;
    /** Plan last update date */
    updatedAt: string;
}
//# sourceMappingURL=Plan.d.ts.map