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