import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3CanistersCanisterIdRequest = { /** * Canister ID */ canisterId: string; }; /** @internal */ export declare const GetApiV3CanistersCanisterIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3CanistersCanisterIdRequest$Outbound = { canister_id: string; }; /** @internal */ export declare const GetApiV3CanistersCanisterIdRequest$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 GetApiV3CanistersCanisterIdRequest$ { /** @deprecated use `GetApiV3CanistersCanisterIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3CanistersCanisterIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3CanistersCanisterIdRequest$Outbound` instead. */ type Outbound = GetApiV3CanistersCanisterIdRequest$Outbound; } export declare function getApiV3CanistersCanisterIdRequestToJSON(getApiV3CanistersCanisterIdRequest: GetApiV3CanistersCanisterIdRequest): string; export declare function getApiV3CanistersCanisterIdRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3canisterscanisterid.d.ts.map