import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteDomainGlobals = { /** * 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 DeleteDomainRequest = { /** * Unique identifier for the domain. */ id: string; }; /** * Domain deletion requested. */ export type DeleteDomainResponse = { success: boolean; }; /** @internal */ export type DeleteDomainRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteDomainRequest$outboundSchema: z.ZodType; export declare function deleteDomainRequestToJSON(deleteDomainRequest: DeleteDomainRequest): string; /** @internal */ export declare const DeleteDomainResponse$inboundSchema: z.ZodType; export declare function deleteDomainResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletedomain.d.ts.map