import { z } from "zod"; import { paginationOptsSchema } from "../utils.js"; export declare const orgListCommand: import("../lib/command").CommandDefinition<{ readonly cursor: { type: "string"; }; readonly limit: { type: "string"; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; cursor: z.ZodOptional; limit: z.ZodDefault>; }, z.core.$strict>> & import("../lib/command").Command; /** * Lists organizations for the current session, including the user's role. * * @param opts - Page size and optional continuation cursor. */ export declare function listOrganizations(opts: z.infer): Promise; //# sourceMappingURL=org-list.d.ts.map