import { ApiBase } from './base';
import { ChaptersListResponse, AuthRequestParams } from '../types';
export declare class ChapterService extends ApiBase {
    path: string;
    getChaptersList(params: AuthRequestParams): Promise<ChaptersListResponse>;
    getChapter({ id, token }: AuthRequestParams): Promise<ChaptersListResponse>;
}
