export interface ISignerKeyPair {
    privateKey: Uint8Array | Buffer | string;
    publicKey: Uint8Array | Buffer | string;
}
