import { Command } from 'commander'; import type { BrownieConfig, Platform } from '../../types.js'; export type RunCodegenOptions = { platform?: Platform; brownie?: BrownieConfig; projectRoot?: string; }; /** * Runs the codegen command with the given arguments. */ export declare function runCodegen({ platform, brownie, projectRoot, }: RunCodegenOptions): Promise; export declare const codegenCommand: Command; //# sourceMappingURL=codegen.d.ts.map