import { z } from 'zod'; export declare const FabricDeployListInput: z.ZodObject<{ branch: z.ZodDefault; }, z.core.$strip>; export declare const FabricDeployListOutput: z.ZodObject<{ branch: z.ZodString; deployments: z.ZodArray; }, z.core.$strip>; export declare const FabricDeployList: import("../../../.pikku/pikku-types.gen.js").PikkuFunctionConfig<{ branch: string; }, { branch: string; deployments: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").PikkuFunctionSessionless<{ branch: string; }, { branch: string; deployments: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices> | import("../../../.pikku/pikku-types.gen.js").PikkuFunction<{ branch: string; }, { branch: string; deployments: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices>, undefined, undefined>; type DeploymentRow = { deploymentId: string; status: string; gitSha?: string | null; versionMajor: number; versionMinor: number; versionPatch: number; triggeredBy?: string | null; trigger: string; deployedAt?: string | null; createdAt: string; }; export declare const renderDeployList: (_s: unknown, { branch, deployments }: { branch: string; deployments: DeploymentRow[]; }) => void; export {};