import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StrategyResponse, StrategyResponse$Outbound } from "./strategyresponse.js"; export type GetStrategiesResponse = { success?: true | undefined; data: Array; }; /** @internal */ export declare const GetStrategiesResponse$inboundSchema: z.ZodType; /** @internal */ export type GetStrategiesResponse$Outbound = { success: true; data: Array; }; /** @internal */ export declare const GetStrategiesResponse$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 GetStrategiesResponse$ { /** @deprecated use `GetStrategiesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetStrategiesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetStrategiesResponse$Outbound` instead. */ type Outbound = GetStrategiesResponse$Outbound; } export declare function getStrategiesResponseToJSON(getStrategiesResponse: GetStrategiesResponse): string; export declare function getStrategiesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstrategiesresponse.d.ts.map