export type ClientFeedback = { id: string; accountId: string; ticketId: string; feedback: string; createdAt: string; updatedAt: string; }; export type CreateClientFeedbackPayload = { accountId: string; ticketId: string; feedback: string; }; //# sourceMappingURL=types.d.ts.map