import { z } from 'zod'; /** * Schema for the triggerPipeline function */ export declare const TriggerPipelineSchema: z.ZodObject<{ projectId: z.ZodOptional; pipelineId: z.ZodNumber; branch: z.ZodOptional; variables: z.ZodOptional; }, "strip", z.ZodTypeAny, { value: string; isSecret?: boolean | undefined; }, { value: string; isSecret?: boolean | undefined; }>>>; templateParameters: z.ZodOptional>; stagesToSkip: z.ZodOptional>; }, "strip", z.ZodTypeAny, { pipelineId: number; projectId?: string | undefined; branch?: string | undefined; variables?: Record | undefined; templateParameters?: Record | undefined; stagesToSkip?: string[] | undefined; }, { pipelineId: number; projectId?: string | undefined; branch?: string | undefined; variables?: Record | undefined; templateParameters?: Record | undefined; stagesToSkip?: string[] | undefined; }>;