import { DataHash } from '../hash/DataHash.js'; export declare class RequestId { readonly hash: DataHash; private constructor(); static create(id: Uint8Array, stateHash: DataHash): Promise; static createFromImprint(id: Uint8Array, hashImprint: Uint8Array): Promise; static fromDto(data: string): RequestId; toBigInt(): bigint; toDto(): string; toString(): string; }