export interface NodeCheckListItemRequestBody { readonly treeStructContainerCheckListId: string; readonly title: string; readonly type_operations: string; } export interface NodeCheckListActionContentRequestBody { readonly nodeCheckListId: string; readonly assigneeActionType: string; readonly actionId: string; readonly contentId: string; readonly isRequired: boolean; readonly isEnable: boolean; } export declare const enum NodeCheckListItemSwitchContentPointer { BEFORE = "BEFORE", AFTER = "AFTER" } export interface NodeCheckListItemSwitchContentRequestParams { readonly nodeCheckListId: string; readonly listEvaluationId: string; readonly movingElementId: string; readonly targetItemId: string; readonly pointer: NodeCheckListItemSwitchContentPointer; } export interface NodeCheckListActionConsiderCorrectRequestBody { readonly nodeCheckListId: string; readonly assigneeActionType: string; readonly actionId: string; }