import * as z from "zod/v4"; export type GetDomainGlobals = { /** * 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 GetDomainRequest = { /** * Unique identifier for the domain. */ id: string; }; /** @internal */ export type GetDomainRequest$Outbound = { id: string; }; /** @internal */ export declare const GetDomainRequest$outboundSchema: z.ZodType; export declare function getDomainRequestToJSON(getDomainRequest: GetDomainRequest): string; //# sourceMappingURL=getdomain.d.ts.map