import { z } from 'zod'; export declare const FabricErrorsInput: z.ZodObject<{ branch: z.ZodDefault; function: z.ZodOptional; }, z.core.$strip>; export declare const FabricErrorsOutput: z.ZodObject<{ branch: z.ZodString; errors: z.ZodArray; }, z.core.$strip>; /** * Recent error-level events for a stage — minimal and actionable, not a * persisted/grouped error tracker. Each row carries a traceId so you can hand * off to `pikku fabric trace `. Reuses the existing logs RPC. */ export declare const FabricErrors: import("../../../.pikku/pikku-types.gen.js").PikkuFunctionConfig<{ branch: string; function?: string | undefined; }, { branch: string; errors: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").PikkuFunctionSessionless<{ branch: string; function?: string | undefined; }, { branch: string; errors: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices> | import("../../../.pikku/pikku-types.gen.js").PikkuFunction<{ branch: string; function?: string | undefined; }, { branch: string; errors: any[]; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices>, undefined, undefined>; type ErrorRow = { timestamp: string; functionName: string; message: string; traceId?: string; }; export declare const renderErrors: (_s: unknown, { branch, errors }: { branch: string; errors: ErrorRow[]; }) => void; export {};