import z from "zod"; import { orgOptsSchema, paginationOptsSchema } from "../utils.js"; export declare const orgApiKeyListCommand: import("../lib/command").CommandDefinition<{ readonly cursor: { type: "string"; }; readonly limit: { type: "string"; }; readonly org: { type: "string"; short: string; }; readonly json: { type: "boolean"; }; }, z.ZodObject<{ json: z.ZodDefault; positionals: z.ZodTuple<[], null>; cursor: z.ZodOptional; limit: z.ZodDefault>; org: z.ZodOptional; }, z.core.$strict>> & import("../lib/command").Command; /** * Lists the API keys owned by one organization. * * @param opts - Organization selector. */ export declare function listOrganizationApiKeys(opts: z.infer & z.infer): Promise; //# sourceMappingURL=org-api-key-list.d.ts.map