import { Bytes } from "@scure/btc-signer/utils";
export declare class ArkAddress {
    readonly serverPubKey: Bytes;
    readonly tweakedPubKey: Bytes;
    readonly hrp: string;
    constructor(serverPubKey: Bytes, tweakedPubKey: Bytes, hrp: string);
    static decode(address: string): ArkAddress;
    encode(): string;
    get pkScript(): Bytes;
}
