type Department = "sales" | "lettings"; type FeedbackParty = "buyer" | "seller" | "renter" | "landlord"; type Action = "note" | "feedback"; export declare function viewingUpdate(params: { accountId: string; teamName: string; viewingId: number; department: Department; action: Action; text: string; feedbackParty?: FeedbackParty; }): Promise; export {}; //# sourceMappingURL=viewing-update.d.ts.map