import * as z from "zod/v4"; export type CreateDomainGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type CreateDomainSetup = { deploymentPortal?: boolean | undefined; packages?: boolean | undefined; /** * Unique identifier for the project. */ deploymentUrlProjectId?: string | null | undefined; managerIds?: Array | undefined; }; export type CreateDomainRequest = { domain: string; setup?: CreateDomainSetup | undefined; }; /** @internal */ export type CreateDomainSetup$Outbound = { deploymentPortal?: boolean | undefined; packages?: boolean | undefined; deploymentUrlProjectId?: string | null | undefined; managerIds?: Array | undefined; }; /** @internal */ export declare const CreateDomainSetup$outboundSchema: z.ZodType; export declare function createDomainSetupToJSON(createDomainSetup: CreateDomainSetup): string; /** @internal */ export type CreateDomainRequest$Outbound = { domain: string; setup?: CreateDomainSetup$Outbound | undefined; }; /** @internal */ export declare const CreateDomainRequest$outboundSchema: z.ZodType; export declare function createDomainRequestToJSON(createDomainRequest: CreateDomainRequest): string; //# sourceMappingURL=createdomain.d.ts.map