import { Observable } from 'rxjs';
import { HttpClient } from '@angular/common/http';
import { OneToNEnroll } from './classes/one-to-n-enroll';
import { LibConfig } from './enroll.module';
export declare class EnrollService {
    private config;
    private http;
    constructor(config: LibConfig, http: HttpClient);
    oneToNEnroll(request: any, accessToken: string): Observable<OneToNEnroll>;
}
