import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateAppGlobals = { orgId?: string | undefined; }; export type CreateAppRequest = { orgId?: string | undefined; createAppConfig: components.CreateAppConfig; }; /** @internal */ export type CreateAppRequest$Outbound = { orgId?: string | undefined; CreateAppConfig: components.CreateAppConfig$Outbound; }; /** @internal */ export declare const CreateAppRequest$outboundSchema: z.ZodType; export declare function createAppRequestToJSON(createAppRequest: CreateAppRequest): string; //# sourceMappingURL=createapp.d.ts.map