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