import { Bitcoind } from '../../types'; type SetBanParams = { bitcoind: Bitcoind; subnet: string; command: string; bantime?: number; absolute?: boolean; }; /** * setban "subnet" "command" ( bantime absolute ) * * Attempts to add or remove an IP/Subnet from the banned list. * */ export declare function setBan(params: SetBanParams): Promise; export {};