import { AddressFamilyType } from '../enum/AddressFamily';
import { ProxyAddress } from './ProxyAddress';
export declare class UnspecProxyAddress implements ProxyAddress {
    static from(data: Uint8Array): UnspecProxyAddress;
    getLength(): number;
    getAddressFamilyType(): AddressFamilyType;
}
