import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type RemoveRecordRequest = {
    domain: string;
    recordId: 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;
};
/**
 * Successful response by removing the specified DNS record.
 */
export type RemoveRecordResponseBody = {};
/** @internal */
export type RemoveRecordRequest$Outbound = {
    domain: string;
    recordId: string;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const RemoveRecordRequest$outboundSchema: z.ZodType<RemoveRecordRequest$Outbound, z.ZodTypeDef, RemoveRecordRequest>;
export declare function removeRecordRequestToJSON(removeRecordRequest: RemoveRecordRequest): string;
/** @internal */
export declare const RemoveRecordResponseBody$inboundSchema: z.ZodType<RemoveRecordResponseBody, z.ZodTypeDef, unknown>;
export declare function removeRecordResponseBodyFromJSON(jsonString: string): SafeParseResult<RemoveRecordResponseBody, SDKValidationError>;
//# sourceMappingURL=removerecordop.d.ts.map