import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Verification } from "./verification.js"; export type VerificationFeed = { /** * List of document infos that include verification related information for them. */ documents?: Array | undefined; }; /** @internal */ export declare const VerificationFeed$inboundSchema: z.ZodType; export declare function verificationFeedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=verificationfeed.d.ts.map