import type { PontxManager } from "../manager.d.ts"; import type { CliContext } from "../cli-context.d.ts"; export declare function makeCode(pontxManager: PontxManager, options: { case: string; specName: string; tagName: string; apiName: string; requestParams: any; bodyParams: any; }): Promise; /** * Gen command: generate API request code */ export declare function genCommand(managerOrContext: PontxManager | CliContext, apiPath: string, options: { case?: string; params?: string; body?: string; useRemote?: boolean; }): Promise;