import z from "zod"; /** Arguments accepted by the organization member removal command. */ declare const removeOrgOptsSchema: z.ZodObject<{ org: z.ZodOptional; positionals: z.ZodTuple<[z.ZodOptional], null>; yes: z.ZodDefault; }, z.core.$strip>; export declare const orgRemoveCommand: import("../lib/command").CommandDefinition<{ readonly org: { type: "string"; short: string; }; readonly yes: { readonly type: "boolean"; readonly short: "y"; readonly default: false; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; org: z.ZodOptional; positionals: z.ZodTuple<[z.ZodOptional], null>; yes: z.ZodDefault; }, z.core.$strict>> & import("../lib/command").Command; /** * Removes a member from the resolved organization. * * @param opts - Validated organization, member, and confirmation options. */ export declare function removeMember(opts: z.infer): Promise; export {}; //# sourceMappingURL=org-remove.d.ts.map