import { GetStorage } from "../../../src/storage"; /** * This is the doc comment for pallet `Timestamp`'s storages. * * `Timestamp`'s calls: {@link: module:pangolin/timestamp/calls} * * @module pangolin/timestamp/storages */ export declare const getTimestamp: (getStorage: GetStorage) => { /** * Current time for the current block. * * @returns {Promise} U64 */ now: () => Promise; /** * Did the timestamp get updated in this block? * * @returns {Promise} Bool */ didUpdate: () => Promise; };