import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ValidityPeriod = { /** * The duration of the certificate's validity period, in seconds. */ lengthSeconds?: number | undefined; /** * An RFC-3339-formatted timestamp after which the certificate is no longer valid. */ notAfter?: string | undefined; /** * An RFC-3339-formatted timestamp before which the certificate is not valid. */ notBefore?: string | undefined; }; /** @internal */ export declare const ValidityPeriod$inboundSchema: z.ZodType; export declare function validityPeriodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=validityperiod.d.ts.map