import type { Command } from 'commander'; import { z } from 'zod'; declare const Options: z.ZodObject<{ module: z.ZodString; out: z.ZodString; api: z.ZodString; network: z.ZodEnum<["mainnet", "testnet"]>; chain: z.ZodNumber; }, "strip", z.ZodTypeAny, { api: string; chain: number; network: "testnet" | "mainnet"; module: string; out: string; }, { api: string; chain: number; network: "testnet" | "mainnet"; module: string; out: string; }>; export type TOptions = z.infer; export declare function retrieveContractCommand(program: Command, version: string): void; export {}; //# sourceMappingURL=index.d.ts.map