import { ThresholdAlgorithm, Share } from '../common/common'; export declare enum Algorithm { Unspecified = "UNSPECIFIED", NoCryptAlgo = "NO_CRYPT", Tsed25519V1 = "TSED25519_V1" } export declare class Crypt { static New(algorithm: string): ThresholdAlgorithm; static NewShare(algorithm: string, content: Uint8Array): Share; }