import { z } from "zod"; //#region src/cli/shared/workspace-name.d.ts /** * Validates a workspace name against the platform's naming rules: 3-63 * lowercase alphanumeric or hyphen characters, not starting or ending with a * hyphen. */ export declare const workspaceNameSchema: z.ZodString; //#endregion