import { StreamReader } from '../../tl/stream';
import { BlockIdExt } from '../tonNode';
export interface AllShardsInfo {
id: BlockIdExt;
proof: Uint8Array;
data: Uint8Array;
}
export declare const allShardsInfo: {
tag: number;
read: (bufferReader: StreamReader) => AllShardsInfo;
};