import z from "zod"; /** Arguments accepted by the invitation acceptance command. */ declare const acceptOptsSchema: z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>; export declare const acceptCommand: import("../lib/command").CommandDefinition<{ readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[z.ZodString], null>; }, z.core.$strict>> & import("../lib/command").Command; /** * Accepts an organization invitation by ID. * * @param opts - Validated command options containing the invitation ID. */ export declare function acceptInvitation(opts: z.infer): Promise; export {}; //# sourceMappingURL=accept.d.ts.map