/// import { InfoItemService } from "../service/info.item.service"; import { Data } from "../interface/data"; import { Request } from "express"; export declare class InfoItemResolver { private readonly infoItemService; constructor(infoItemService: InfoItemService); createInfoItem(req: Request, body: { name: string; label: string; description: string; type: string; necessary: boolean; registerVisible: boolean; informationVisible: boolean; order: number; }): Promise; updateInfoItem(req: Request, body: { id: number; name: string; label: string; description: string; type: string; necessary: boolean; registerVisible: boolean; informationVisible: boolean; order: number; }): Promise; deleteInfoItem(req: Request, body: { id: number; }): Promise; deleteInfoItems(req: Request, body: { ids: Array; }): Promise; }