export declare type GroupType = string | Group; export default class Group { members: GroupType[]; /** * * Define the threshold number of signatures * @type {number} * @memberof Group */ threshold: number; constructor(members: GroupType[], threshold: number); serialize(): string; }