import z from "zod"; /** Arguments accepted by the project creation command. */ declare const createProjectOptsSchema: z.ZodObject<{ org: z.ZodOptional; name: z.ZodPrefault>; }, z.core.$strip>; export declare const projectCreateCommand: import("../lib/command").CommandDefinition<{ readonly name: { readonly type: "string"; readonly short: "n"; }; readonly org: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; org: z.ZodOptional; name: z.ZodPrefault>; }, z.core.$strict>> & import("../lib/command").Command; /** * Creates a project in the resolved organization. * * @param opts - Validated organization selector and optional project name. * @throws When the organization has reached its project limit. */ export declare function createProject(opts: z.infer): Promise; export {}; //# sourceMappingURL=project-create.d.ts.map