import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const GetApiV3CanistersFormat: { readonly Json: "json"; readonly Csv: "csv"; }; export type GetApiV3CanistersFormat = ClosedEnum; export type GetApiV3CanistersRequest = { maxCanisterIndex?: number | null | undefined; limit?: number | undefined; /** * Controller ID */ controllerId?: string | null | undefined; offset?: number | undefined; /** * Available values : id, canister_id, controllers, subnet_id */ sortBy?: any | undefined; format?: GetApiV3CanistersFormat | undefined; /** * Subnet ID */ subnetId?: string | null | undefined; }; /** @internal */ export declare const GetApiV3CanistersFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiV3CanistersFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiV3CanistersFormat$ { /** @deprecated use `GetApiV3CanistersFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; /** @deprecated use `GetApiV3CanistersFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Json: "json"; readonly Csv: "csv"; }>; } /** @internal */ export declare const GetApiV3CanistersRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3CanistersRequest$Outbound = { max_canister_index: number | null; limit: number; controller_id: string | null; offset: number; sort_by?: any; format: string; subnet_id: string | null; }; /** @internal */ export declare const GetApiV3CanistersRequest$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 GetApiV3CanistersRequest$ { /** @deprecated use `GetApiV3CanistersRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3CanistersRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3CanistersRequest$Outbound` instead. */ type Outbound = GetApiV3CanistersRequest$Outbound; } export declare function getApiV3CanistersRequestToJSON(getApiV3CanistersRequest: GetApiV3CanistersRequest): string; export declare function getApiV3CanistersRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3canisters.d.ts.map