import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DomainDiagnosticCheckDto } from "./domaindiagnosticcheckdto.js"; import { DomainDiagnosticIssueDto } from "./domaindiagnosticissuedto.js"; export type DiagnoseDomainResponseDto = { /** * True when there are no error-severity issues */ ok: boolean; /** * ISO timestamp when the diagnostic run finished */ runAt: string; checks: Array; issues: Array; }; /** @internal */ export declare const DiagnoseDomainResponseDto$inboundSchema: z.ZodType; export declare function diagnoseDomainResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=diagnosedomainresponsedto.d.ts.map