import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateAppGlobals = { appId?: string | undefined; }; export type UpdateAppRequest = { appId?: string | undefined; appConfigWithServiceConfig: components.AppConfigWithServiceConfig; }; /** @internal */ export type UpdateAppRequest$Outbound = { appId?: string | undefined; AppConfigWithServiceConfig: components.AppConfigWithServiceConfig$Outbound; }; /** @internal */ export declare const UpdateAppRequest$outboundSchema: z.ZodType; export declare function updateAppRequestToJSON(updateAppRequest: UpdateAppRequest): string; //# sourceMappingURL=updateapp.d.ts.map