import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The verification action requested. */ export declare const VerifyRequestAction: { readonly Verify: "VERIFY"; readonly Deprecate: "DEPRECATE"; readonly Unverify: "UNVERIFY"; }; /** * The verification action requested. */ export type VerifyRequestAction = ClosedEnum; export type VerifyRequest = { /** * The document which is verified. */ documentId: string; /** * The verification action requested. */ action?: VerifyRequestAction | undefined; }; /** @internal */ export declare const VerifyRequestAction$outboundSchema: z.ZodNativeEnum; /** @internal */ export type VerifyRequest$Outbound = { documentId: string; action?: string | undefined; }; /** @internal */ export declare const VerifyRequest$outboundSchema: z.ZodType; export declare function verifyRequestToJSON(verifyRequest: VerifyRequest): string; //# sourceMappingURL=verifyrequest.d.ts.map