import * as S from "@distilled.cloud/core/schema"; import * as API from "@distilled.cloud/core/api"; import { type CloudflareOpError, type CloudflareOpContext } from "../protocol.ts"; export type { CloudflareOpError, CloudflareOpContext }; export interface GetDcvDelegationRequest { /** Identifier. */ zoneId: string; } export declare const GetDcvDelegationRequest: S.Schema; /** Unwrapped `result` payload of the Cloudflare v4 response envelope. */ export interface GetDcvDelegationResponse { /** The DCV Delegation unique identifier. */ uuid?: string | null; } export declare const GetDcvDelegationResponse: S.Schema; export type GetDcvDelegationError = CloudflareOpError; /** Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. */ export declare const getDcvDelegation: API.OperationMethod; //# sourceMappingURL=dcv_delegation.d.ts.map