import z from "zod"; import { orgOptsSchema, paginationOptsSchema } from "../utils.js"; export declare const projectListCommand: 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 projects for the resolved organization. * * @param opts - Validated options containing an optional organization filter. * @throws When the organization cannot be resolved. */ export declare function listProjects(opts: z.infer & z.infer): Promise; //# sourceMappingURL=project-list.d.ts.map