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