import { GuidValue } from "@omnia/fx/models"; import { ProcessFeedbackRecipients, ProcessFeedback } from "../models"; export declare class ProcessFeedbackService { private httpClient; constructor(); create: (feedback: ProcessFeedbackRecipients) => Promise; getByOpmProcessId: (opmProcessId: GuidValue) => Promise>; remove: (id: GuidValue) => Promise; }