import { Bitcoind } from '../../types'; type StopParams = { bitcoind: Bitcoind; }; /** * stop * * Request a graceful shutdown of Bitcoin Core. * */ export declare function stop(params: StopParams): Promise; export {};