import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ElfFile = { class?: string | undefined; data?: string | undefined; machine?: string | undefined; osAbi?: string | undefined; type?: string | undefined; }; /** @internal */ export declare const ElfFile$inboundSchema: z.ZodType; export declare function elfFileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=elffile.d.ts.map