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 FlowAssetTypeFtAtType: { readonly FlowFt: "FLOW_FT"; }; export type FlowAssetTypeFtAtType = ClosedEnum; export type FlowAssetTypeFt = { atType: FlowAssetTypeFtAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; }; /** @internal */ export declare const FlowAssetTypeFtAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FlowAssetTypeFtAtType$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 FlowAssetTypeFtAtType$ { /** @deprecated use `FlowAssetTypeFtAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FlowFt: "FLOW_FT"; }>; /** @deprecated use `FlowAssetTypeFtAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FlowFt: "FLOW_FT"; }>; } /** @internal */ export declare const FlowAssetTypeFt$inboundSchema: z.ZodType; /** @internal */ export type FlowAssetTypeFt$Outbound = { "@type": string; contract: string; }; /** @internal */ export declare const FlowAssetTypeFt$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 FlowAssetTypeFt$ { /** @deprecated use `FlowAssetTypeFt$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FlowAssetTypeFt$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FlowAssetTypeFt$Outbound` instead. */ type Outbound = FlowAssetTypeFt$Outbound; } export declare function flowAssetTypeFtToJSON(flowAssetTypeFt: FlowAssetTypeFt): string; export declare function flowAssetTypeFtFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=flowassettypeft.d.ts.map