import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type GetDomainVerificationRecordRequest = {
    /**
     * The domain name to get the verification record for
     */
    domain: string;
    /**
     * The Team identifier to perform the request on behalf of.
     */
    teamId?: string | undefined;
    /**
     * The Team slug to perform the request on behalf of.
     */
    slug?: string | undefined;
};
/**
 * Returns the TXT record needed to verify domain ownership.
 */
export type GetDomainVerificationRecordResponseBody = {
    txtRecord: string;
    verificationDomain: string;
};
/** @internal */
export type GetDomainVerificationRecordRequest$Outbound = {
    domain: string;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const GetDomainVerificationRecordRequest$outboundSchema: z.ZodType<GetDomainVerificationRecordRequest$Outbound, z.ZodTypeDef, GetDomainVerificationRecordRequest>;
export declare function getDomainVerificationRecordRequestToJSON(getDomainVerificationRecordRequest: GetDomainVerificationRecordRequest): string;
/** @internal */
export declare const GetDomainVerificationRecordResponseBody$inboundSchema: z.ZodType<GetDomainVerificationRecordResponseBody, z.ZodTypeDef, unknown>;
export declare function getDomainVerificationRecordResponseBodyFromJSON(jsonString: string): SafeParseResult<GetDomainVerificationRecordResponseBody, SDKValidationError>;
//# sourceMappingURL=getdomainverificationrecordop.d.ts.map