import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * A plan defines how much CPU and memory is required to run an instance of your game server. * * @remarks * * `tiny`: shared core, 1gb memory * * `small`: 1 core, 2gb memory * * `medium`: 2 core, 4gb memory * * `large`: 4 core, 8gb memory */ export declare const PlanName: { readonly Tiny: "tiny"; readonly Small: "small"; readonly Medium: "medium"; readonly Large: "large"; }; /** * A plan defines how much CPU and memory is required to run an instance of your game server. * * @remarks * * `tiny`: shared core, 1gb memory * * `small`: 1 core, 2gb memory * * `medium`: 2 core, 4gb memory * * `large`: 4 core, 8gb memory */ export type PlanName = OpenEnum; /** @internal */ export declare const PlanName$inboundSchema: z.ZodType; /** @internal */ export declare const PlanName$outboundSchema: z.ZodType; //# sourceMappingURL=planname.d.ts.map