import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AppSchemasLedgersLedgerCkerc20Contract = { chainId: string; address: string; }; /** @internal */ export declare const AppSchemasLedgersLedgerCkerc20Contract$inboundSchema: z.ZodType; /** @internal */ export type AppSchemasLedgersLedgerCkerc20Contract$Outbound = { chain_id: string; address: string; }; /** @internal */ export declare const AppSchemasLedgersLedgerCkerc20Contract$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 AppSchemasLedgersLedgerCkerc20Contract$ { /** @deprecated use `AppSchemasLedgersLedgerCkerc20Contract$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AppSchemasLedgersLedgerCkerc20Contract$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AppSchemasLedgersLedgerCkerc20Contract$Outbound` instead. */ type Outbound = AppSchemasLedgersLedgerCkerc20Contract$Outbound; } export declare function appSchemasLedgersLedgerCkerc20ContractToJSON(appSchemasLedgersLedgerCkerc20Contract: AppSchemasLedgersLedgerCkerc20Contract): string; export declare function appSchemasLedgersLedgerCkerc20ContractFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=appschemasledgersledgerckerc20contract.d.ts.map