export declare const FeedbackRating: { readonly Positive: "positive"; readonly Negative: "negative"; readonly Neutral: "neutral"; }; export type FeedbackRating = (typeof FeedbackRating)[keyof typeof FeedbackRating];