export declare class KeyPair {
    pk: Uint8Array;
    sk: Uint8Array;
    constructor(pk: Uint8Array, sk: Uint8Array);
}
