import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { ZksyncNumberParameter } from '../types/block.js'; import type { PublicZksyncRpcSchema } from '../types/eip1193.js'; import type { ZksyncRawBlockTransactions } from '../types/transaction.js'; export type GetRawBlockTransactionsParameters = ZksyncNumberParameter; export type GetRawBlockTransactionsReturnType = ZksyncRawBlockTransactions; export declare function getRawBlockTransactions(client: Client, parameters: GetRawBlockTransactionsParameters): Promise; //# sourceMappingURL=getRawBlockTransactions.d.ts.map