/* Types for feedbackTypes.js. */ export type FeedbackType = { id: string; label: string; hint: string }; export declare const FEEDBACK_TYPES: FeedbackType[]; export declare function feedbackTypeLabel(id: string): string;