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