import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RetrieveApiV2LedgersLedgerCanisterIdGetRequest = { ledgerCanisterId: string; }; /** @internal */ export declare const RetrieveApiV2LedgersLedgerCanisterIdGetRequest$inboundSchema: z.ZodType; /** @internal */ export type RetrieveApiV2LedgersLedgerCanisterIdGetRequest$Outbound = { ledger_canister_id: string; }; /** @internal */ export declare const RetrieveApiV2LedgersLedgerCanisterIdGetRequest$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 RetrieveApiV2LedgersLedgerCanisterIdGetRequest$ { /** @deprecated use `RetrieveApiV2LedgersLedgerCanisterIdGetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RetrieveApiV2LedgersLedgerCanisterIdGetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RetrieveApiV2LedgersLedgerCanisterIdGetRequest$Outbound` instead. */ type Outbound = RetrieveApiV2LedgersLedgerCanisterIdGetRequest$Outbound; } export declare function retrieveApiV2LedgersLedgerCanisterIdGetRequestToJSON(retrieveApiV2LedgersLedgerCanisterIdGetRequest: RetrieveApiV2LedgersLedgerCanisterIdGetRequest): string; export declare function retrieveApiV2LedgersLedgerCanisterIdGetRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrieveapiv2ledgersledgercanisteridget.d.ts.map