import { Bitcoind } from '../../types'; type MockSchedulerParams = { bitcoind: Bitcoind; delta_time: number; }; /** * mockscheduler delta_time * * Bump the scheduler into the future (-regtest only) * */ export declare function mockScheduler(params: MockSchedulerParams): Promise; export {};