export interface KeyPair {
	privateKey: string;
	publicKey: string;
}
