/** * * DTO returned upon successful user and group registration, containing the identifiers and * initial authentication token needed to access the newly created environment. * / */ export declare class RegistrationSuccess { /** * * The identifier of the newly created group. */ groupId: string; /** * * The identifier of the newly created user. */ userId: string; /** * * The initial authentication token for the newly registered user. */ token: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): RegistrationSuccess; }