import { StreamReader } from '../../tl/stream';
import { BlockIdExt } from '../tonNode';
export interface TransactionList {
ids: BlockIdExt[];
transactions: Uint8Array;
}
export declare const transactionList: {
tag: number;
read: (reader: StreamReader) => TransactionList;
};