import { z } from 'zod'; import { SecurityScheme } from '../types/apps'; export declare const AppConfigurationsSchema: { list: z.ZodObject<{ app_names: z.ZodOptional>; limit: z.ZodOptional; offset: z.ZodOptional; }, "strip", z.ZodTypeAny, { limit?: number | undefined; offset?: number | undefined; app_names?: string[] | undefined; }, { limit?: number | undefined; offset?: number | undefined; app_names?: string[] | undefined; }>; create: z.ZodObject<{ app_name: z.ZodString; security_scheme: z.ZodNativeEnum; security_scheme_overrides: z.ZodOptional>; all_functions_enabled: z.ZodDefault>; enabled_functions: z.ZodOptional>; }, "strip", z.ZodTypeAny, { app_name: string; security_scheme: SecurityScheme; all_functions_enabled: boolean; security_scheme_overrides?: Record | undefined; enabled_functions?: string[] | undefined; }, { app_name: string; security_scheme: SecurityScheme; security_scheme_overrides?: Record | undefined; all_functions_enabled?: boolean | undefined; enabled_functions?: string[] | undefined; }>; };