import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RegisterDomainRequestBody = { /** * The domain to claim. We only support .link domains for now. */ domain: string; }; /** * The domain was registered. */ export type RegisterDomainResponseBody = { /** * The domain name. */ domain: string; /** * The status of the domain registration. */ status: string; /** * The expiration timestamp of the domain (Unix timestamp in milliseconds). */ expiration: number | null; }; /** @internal */ export type RegisterDomainRequestBody$Outbound = { domain: string; }; /** @internal */ export declare const RegisterDomainRequestBody$outboundSchema: z.ZodType; export declare function registerDomainRequestBodyToJSON(registerDomainRequestBody: RegisterDomainRequestBody): string; /** @internal */ export declare const RegisterDomainResponseBody$inboundSchema: z.ZodType; export declare function registerDomainResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=registerdomain.d.ts.map