import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AssetIndicatorData, AssetIndicatorData$Outbound } from "./assetindicatordata.js"; export type GetHedgeIndicatorResponse = { success?: true | undefined; data: AssetIndicatorData; }; /** @internal */ export declare const GetHedgeIndicatorResponse$inboundSchema: z.ZodType; /** @internal */ export type GetHedgeIndicatorResponse$Outbound = { success: true; data: AssetIndicatorData$Outbound; }; /** @internal */ export declare const GetHedgeIndicatorResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetHedgeIndicatorResponse$ { /** @deprecated use `GetHedgeIndicatorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetHedgeIndicatorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetHedgeIndicatorResponse$Outbound` instead. */ type Outbound = GetHedgeIndicatorResponse$Outbound; } export declare function getHedgeIndicatorResponseToJSON(getHedgeIndicatorResponse: GetHedgeIndicatorResponse): string; export declare function getHedgeIndicatorResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gethedgeindicatorresponse.d.ts.map