import { RoochAddress } from './rooch.js'; import { Bytes } from '../types/bytes.js'; import { Address } from './address.js'; export declare class NoStrAddress extends Address { private readonly bytes; constructor(input: string | Bytes); genRoochAddress(): RoochAddress; toBytes(): Bytes; }