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