import { Bitcoind } from '../../types'; type PruneBlockchainParams = { bitcoind: Bitcoind; height: number; }; /** * pruneblockchain height * * pruneblockchain */ export declare function pruneBlockchain(params: PruneBlockchainParams): Promise; export {};