import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NTPNTPHeader } from "./ntpntpheader.js"; export type Ntp = { getTimeHeader?: NTPNTPHeader | undefined; }; /** @internal */ export declare const Ntp$inboundSchema: z.ZodType; export declare function ntpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ntp.d.ts.map