import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetStrategiesRequest = { includeRelationships?: boolean | undefined; /** * Optional filter by strategy name */ strategyName?: string | null | undefined; }; /** @internal */ export declare const GetStrategiesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetStrategiesRequest$Outbound = { include_relationships: boolean; strategy_name?: string | null | undefined; }; /** @internal */ export declare const GetStrategiesRequest$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 GetStrategiesRequest$ { /** @deprecated use `GetStrategiesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetStrategiesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetStrategiesRequest$Outbound` instead. */ type Outbound = GetStrategiesRequest$Outbound; } export declare function getStrategiesRequestToJSON(getStrategiesRequest: GetStrategiesRequest): string; export declare function getStrategiesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getstrategies.d.ts.map