import { z } from 'zod'; export declare const FabricDeployUnitsInput: z.ZodObject<{ branch: z.ZodDefault; }, z.core.$strip>; export declare const FabricDeployUnitsOutput: z.ZodObject<{ branch: z.ZodString; workers: z.ZodArray; }, z.core.$strip>; export declare const FabricDeployUnits: import("../../../.pikku/pikku-types.gen.js").PikkuFunctionConfig<{ branch: string; }, { branch: string; workers: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").PikkuFunctionSessionless<{ branch: string; }, { branch: string; workers: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices> | import("../../../.pikku/pikku-types.gen.js").PikkuFunction<{ branch: string; }, { branch: string; workers: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices>, undefined, undefined>; type WorkerRow = { name: string; role: string; status: string; functionIds: string[]; }; export declare const renderDeployUnits: (_s: unknown, { branch, workers }: { branch: string; workers: WorkerRow[]; }) => void; export {};