export interface Share { x: number; y: Uint8Array; threshold?: number; } export declare function split(secret: Uint8Array, options: { min: number; total: number; }): Share[]; export declare function reconstruct(shares: Share[]): Uint8Array; //# sourceMappingURL=index.d.ts.map