import { z } from 'zod'; /** * Schema for the listPipelines function */ export declare const ListPipelinesSchema: z.ZodObject<{ projectId: z.ZodOptional; top: z.ZodOptional; orderBy: z.ZodOptional; }, "strip", z.ZodTypeAny, { projectId?: string | undefined; top?: number | undefined; orderBy?: string | undefined; }, { projectId?: string | undefined; top?: number | undefined; orderBy?: string | undefined; }>;