/** * The additional info provided by the poster. */ export declare type FeedbackInfo = { /** * The name of the user */ name?: string; /** * Email for contact */ email?: string; /** * Phone number for contact */ phone_number?: string; /** * The class number reported by the student */ class_number?: number; /** * The year of graduation reported by the student */ grad_year?: number; };