///
import { CoinAddress } from '../ICoinProtocol';
export declare class TezosAddress implements CoinAddress {
private readonly value;
protected constructor(value: string);
static fromPublicKey(publicKey: string): Promise;
static fromValue(value: string): Promise;
static fromRawTz(rawTz: string | Buffer): Promise;
static isTzAddress(address: string): boolean;
getValue(): string;
}