import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Asset, Asset$Outbound } from "./asset.js"; export type AvailableIndicator = { name: string; assets: Array; }; /** @internal */ export declare const AvailableIndicator$inboundSchema: z.ZodType; /** @internal */ export type AvailableIndicator$Outbound = { name: string; assets: Array; }; /** @internal */ export declare const AvailableIndicator$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 AvailableIndicator$ { /** @deprecated use `AvailableIndicator$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AvailableIndicator$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AvailableIndicator$Outbound` instead. */ type Outbound = AvailableIndicator$Outbound; } export declare function availableIndicatorToJSON(availableIndicator: AvailableIndicator): string; export declare function availableIndicatorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=availableindicator.d.ts.map