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