import { NewTaskActionFunction } from 'hardhat/types/tasks';
interface RunActionArguments {
    skipPrompts: boolean;
    saveDeployments?: string;
    tags?: string;
    pollingInterval?: string;
    reportGasUsed: boolean;
    noCompile?: boolean;
    defaultBuildProfile?: string;
    reset?: boolean;
}
declare const runScriptWithHardhat: NewTaskActionFunction<RunActionArguments>;
export default runScriptWithHardhat;
//# sourceMappingURL=deploy.d.ts.map