import { Bitcoind } from '../../types'; type SetMockTimeParams = { bitcoind: Bitcoind; timestamp: number; }; /** * setmocktime timestamp * * Set the local time to given timestamp (-regtest only) * */ export declare function setMockTime(params: SetMockTimeParams): Promise; export {};