import type { UtilsTaskDefinition } from "../types.js";
export interface GenerateTasksOptions {
    /**
     * Whether to nest every task under a top-level `utils` task. Used by the
     * Hardhat CLI (`hardhat utils constants ...`) but not by the standalone hhu
     * binary (`hhu constants ...`).
     */
    prefixWithUtils: boolean;
}
export declare function generateTasks(options: GenerateTasksOptions): UtilsTaskDefinition[];
//# sourceMappingURL=index.d.ts.map