import type { KeystoreLoader } from "../types.js";
import type { NewTaskActionFunction } from "hardhat/types/tasks";
interface TaskGetArguments {
    key: string;
    force: boolean;
}
declare const taskSet: NewTaskActionFunction<TaskGetArguments>;
export declare const set: ({ key, force }: TaskGetArguments, keystoreLoader: KeystoreLoader, requestSecretInput: (interruptor: string, inputDescription: string) => Promise<string>, consoleLog?: (text: string) => void) => Promise<void>;
export default taskSet;
//# sourceMappingURL=set.d.ts.map