import { DatabaseModel } from '..'; import { UserId } from '../user'; import { UserAgentInfo } from './UserAgentInfo'; export interface Feedback extends DatabaseModel { /** The unique ID of the feedback. */ id: FeedbackId; /** The ID of the user reporting this feedback. */ creator?: UserId; /** A brief description of the feedback. */ description: string; /** A screenshot or other image describing the feedback. */ imageUrl?: string; /** The web or mobile page in which the feedback was created. */ page?: string; /** The UI component in which the feedback was created. */ component?: string; /** The user agent for which the bug was found. */ userAgent?: UserAgentInfo; } export declare type FeedbackId = string;