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"; import { Block } from "bitcoinjs-lib"; //#region src/actions/getBlock.d.ts type GetBlockParameters = { blockHash: string; blockNumber?: never; } | { blockHash?: never; blockNumber: number; }; type GetBlockReturnType = Block; declare function getBlock(client: Client, { blockHash, blockNumber }: GetBlockParameters): Promise; //#endregion export { GetBlockParameters, GetBlockReturnType, getBlock }; //# sourceMappingURL=getBlock.d.ts.map