/** * * Information on how to update the splits for a specific key. */ export declare class ShamirUpdateRequest { /** * * The ids of the data owners which will hold a copy of the key part. */ notariesIds: Array; /** * * The minimum number of shares required to reconstruct the key. */ minShares: number; constructor(partial: Partial & Pick); }