import { Chain } from "../types/chain.js"; import { UTXOSchema } from "../transports/types.js"; import { Account } from "../types/account.js"; import { Transport } from "../types/transport.js"; import { Client } from "../types/client.js"; //#region src/actions/getBlockCount.d.ts type GetBlockCountReturnType = number; declare function getBlockCount(client: Client): Promise; //#endregion export { GetBlockCountReturnType, getBlockCount }; //# sourceMappingURL=getBlockCount.d.ts.map