import type { Observable } from 'rxjs'; import type { NodeCheckListActionConsiderCorrectRequestBody, NodeCheckListActionContentRequestBody, NodeCheckListItemRequestBody, NodeCheckListItemSwitchContentRequestParams, NodeCheckListEvaluationItemContent, NodeCheckListItem, NodeCheckListItemContentType } from '../models'; import { CuiApiContext } from '../../tokens'; import * as i0 from "@angular/core"; export declare class CuiNodeChecklistApiService { private readonly httpClient; private readonly MAIN_URL; addNodeCheckListItem(data: NodeCheckListItemRequestBody, context?: CuiApiContext): Observable>; updateNodeCheckListItemTitle(id: string, title: string, context?: CuiApiContext): Observable; updateNodeCheckListItemActionContent(data: NodeCheckListActionContentRequestBody, context?: CuiApiContext): Observable>; updateNodeCheckListItemIsConsideredCorrect(data: NodeCheckListActionConsiderCorrectRequestBody, context?: CuiApiContext): Observable>; updateNodeCheckListItemSwitchContent({ nodeCheckListId, listEvaluationId, movingElementId, targetItemId, pointer }: NodeCheckListItemSwitchContentRequestParams, context?: CuiApiContext): Observable>; addEvaluationCriteriaItem(id: string, listId: string, criteria: string, evaluation: number, context?: CuiApiContext): Observable>; updateEvaluationCriteriaItem(id: string, listId: string, criteriaId: string, criteria: string, evaluation: number, context?: CuiApiContext): Observable>; deleteEvaluationCriteriaItem(id: string, listId: string, criteriaId: string, context?: CuiApiContext): Observable>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }