import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Canister, Canister$Outbound } from "./canister.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ListCanistersResponse = { data: Array; }; /** @internal */ export declare const ListCanistersResponse$inboundSchema: z.ZodType; /** @internal */ export type ListCanistersResponse$Outbound = { data: Array; }; /** @internal */ export declare const ListCanistersResponse$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 ListCanistersResponse$ { /** @deprecated use `ListCanistersResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListCanistersResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListCanistersResponse$Outbound` instead. */ type Outbound = ListCanistersResponse$Outbound; } export declare function listCanistersResponseToJSON(listCanistersResponse: ListCanistersResponse): string; export declare function listCanistersResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcanistersresponse.d.ts.map