import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Domain extends ClientSDK { /** * Confirm a domain link request * * @remarks * Confirms a given domain link request by validating the PCID. */ v3DomainConfirmLinkRequest(request?: components.V3DomainConfirmLinkRequest | undefined, options?: RequestOptions): Promise; /** * Get Domain Details * * @remarks * Returns the domain details. */ v3DomainIDRequest(options?: RequestOptions): Promise; /** * Request a domain link * * @remarks * Create a request to connect the requested domain to the domain the request is made from. */ v3DomainLinkRequest(request?: components.V3DomainLinkRequest | undefined, options?: RequestOptions): Promise; /** * Get the list of domains that are linked to this domain. * * @remarks * Returns the accepted and pending links for this domain. */ v3DomainLinkedRequest(options?: RequestOptions): Promise; /** * Remove a domain link or request * * @remarks * Remove a domain link or request between the requested domain and the domain the request is made from. */ v3DomainUnlinkRequest(request?: components.V3DomainUnlinkRequest | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=domain.d.ts.map