import type { NewTaskActionFunction } from 'hardhat/types/tasks'; interface TaskActionArguments { license?: string; overwrite: boolean; } declare const action: NewTaskActionFunction; export default action;