import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type SetupFingerprintInfo = { /** * Stable target key for the setup contract, e.g. aws/us-east-1 */ target: string; /** * Deterministic setup contract fingerprint for one setup target */ fingerprint: string; /** * Setup fingerprint algorithm version */ version: number; }; /** @internal */ export declare const SetupFingerprintInfo$inboundSchema: z.ZodType; export declare function setupFingerprintInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=setupfingerprintinfo.d.ts.map