import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const SolanaSolAssetTypeAtType: { readonly SolanaSol: "SOLANA_SOL"; }; export type SolanaSolAssetTypeAtType = ClosedEnum; export type SolanaSolAssetType = { atType: SolanaSolAssetTypeAtType; }; /** @internal */ export declare const SolanaSolAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SolanaSolAssetTypeAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SolanaSolAssetTypeAtType$ { /** @deprecated use `SolanaSolAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SolanaSol: "SOLANA_SOL"; }>; /** @deprecated use `SolanaSolAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SolanaSol: "SOLANA_SOL"; }>; } /** @internal */ export declare const SolanaSolAssetType$inboundSchema: z.ZodType; /** @internal */ export type SolanaSolAssetType$Outbound = { "@type": string; }; /** @internal */ export declare const SolanaSolAssetType$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 SolanaSolAssetType$ { /** @deprecated use `SolanaSolAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SolanaSolAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SolanaSolAssetType$Outbound` instead. */ type Outbound = SolanaSolAssetType$Outbound; } export declare function solanaSolAssetTypeToJSON(solanaSolAssetType: SolanaSolAssetType): string; export declare function solanaSolAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=solanasolassettype.d.ts.map