import type { Command } from "commander";
type EncodeOptions = {
    method?: string;
    arguments?: Array<string | string[]>;
    abi?: string;
};
export declare const handler: (options: EncodeOptions, context: Command) => Promise<void>;
export {};
