export declare class PublicKey {
    readonly raw: Uint8Array;
    get hex(): string;
    constructor(compressed: Uint8Array);
}
