import { z } from 'zod'; export declare const FabricDbSchemaInput: z.ZodObject<{ branch: z.ZodDefault; }, z.core.$strip>; export declare const FabricDbSchemaOutput: z.ZodObject<{ branch: z.ZodString; schema: z.ZodAny; }, z.core.$strip>; export declare const FabricDbSchema: import("../../../.pikku/pikku-types.gen.js").PikkuFunctionConfig<{ branch: string; }, { branch: string; schema: any; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").PikkuFunctionSessionless<{ branch: string; }, { branch: string; schema: any; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices> | import("../../../.pikku/pikku-types.gen.js").PikkuFunction<{ branch: string; }, { branch: string; schema: any; }, "rpc" | "session", import("../../../.pikku/pikku-types.gen.js").WiredServices>, undefined, undefined>; type Schema = { tables?: { name: string; columns: unknown[]; }[]; } | null; export declare const renderDbSchema: (_s: unknown, { branch, schema }: { branch: string; schema: Schema; }) => void; export {};