import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ExpectedDnsRecordDto = { type: string; name: string; content: string; ttl: string; priority?: number | undefined; }; /** @internal */ export declare const ExpectedDnsRecordDto$inboundSchema: z.ZodType; export declare function expectedDnsRecordDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=expecteddnsrecorddto.d.ts.map