import z from "zod"; /** Arguments accepted by the organization creation command. */ declare const createOrgOptsSchema: z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; name: z.ZodPrefault>; }, z.core.$strict>; export declare const orgCreateCommand: import("../lib/command").CommandDefinition<{ readonly name: { readonly type: "string"; readonly short: "n"; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; name: z.ZodPrefault>; }, z.core.$strict>> & import("../lib/command").Command; /** * Creates an organization for the authenticated user. * * @param opts - Validated options containing an optional organization name. */ export declare function createOrganization(opts: z.infer): Promise; export {}; //# sourceMappingURL=org-create.d.ts.map