import { Algorithm } from './crypt'; import { ThresholdAlgorithm, Share, Secret } from '../common/common'; declare class NoCryptShare implements Share { total: number; threshold: number; content: Uint8Array; constructor(object?: Uint8Array); serialize(): Uint8Array; getAlgorithm(): Algorithm; } declare class NoCrypt implements ThresholdAlgorithm { getName(): Algorithm; dealShares(secret: Secret, threshold: number, total: number): Share[]; combineShares(shares: Share[]): Secret; } export { NoCrypt, NoCryptShare };