import { z } from "zod"; export declare const CreateAppSchema: z.ZodObject<{ id: z.ZodOptional; tenantId: z.ZodString; ownerId: z.ZodString; title: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export declare const UpdateAppSchema: z.ZodObject<{ id: z.ZodString; schema: z.ZodAny; config: z.ZodAny; }, z.core.$strip>; export declare const GetAppSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const ListAppsSchema: z.ZodObject<{ tenantId: z.ZodString; }, z.core.$strip>; export declare const CreatePageSchema: z.ZodObject<{ id: z.ZodOptional; tenantId: z.ZodString; appId: z.ZodString; moduleId: z.ZodString; slug: z.ZodString; title: z.ZodString; description: z.ZodOptional; parentId: z.ZodOptional; isFolder: z.ZodDefault; }, z.core.$strip>; export declare const _CreateWorkflowSchema: z.ZodObject<{ id: z.ZodOptional; tenantId: z.ZodString; appId: z.ZodString; moduleId: z.ZodString; slug: z.ZodString; title: z.ZodString; description: z.ZodOptional; parentId: z.ZodOptional; isFolder: z.ZodDefault; }, z.core.$strip>; export declare const CreatePageSchemaSchema: z.ZodObject<{ id: z.ZodOptional; tenantId: z.ZodString; appId: z.ZodString; pageId: z.ZodString; schema: z.ZodString; }, z.core.$strip>; export declare const ListPagesSchema: z.ZodObject<{ tenantId: z.ZodString; appId: z.ZodString; moduleId: z.ZodString; }, z.core.$strip>; export declare const UpdatePageSchemaSchema: z.ZodObject<{ id: z.ZodString; schema: z.ZodString; }, z.core.$strip>; export declare const GetPageSchemaSchema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; export declare const CreateModuleSchema: z.ZodObject<{ id: z.ZodOptional; tenantId: z.ZodString; appId: z.ZodString; name: z.ZodString; description: z.ZodOptional; }, z.core.$strip>; export declare const ListModulesSchema: z.ZodObject<{ tenantId: z.ZodString; appId: z.ZodString; }, z.core.$strip>; export declare const UpdateEditorConfigSchema: z.ZodObject<{ extensions: z.ZodOptional>>; }, z.core.$strip>; export declare const GetPageBySlugSchema: z.ZodObject<{ appId: z.ZodString; slug: z.ZodString; }, z.core.$strip>; export declare const PublishAppSchema: z.ZodObject<{ appId: z.ZodString; subdomain: z.ZodString; defaultPageId: z.ZodString; }, z.core.$strip>; export declare const GetPublishedSettingsSchema: z.ZodObject<{ appId: z.ZodString; }, z.core.$strip>; export declare const ResolvePublishedRouteSchema: z.ZodObject<{ subdomain: z.ZodString; slug: z.ZodOptional; }, z.core.$strip>;