import { ComaSeparatedValues } from "./sessionstate"; import { ICOMMAND } from "./command/icommand"; import { ACTION } from "./command/action"; declare enum EnumFeedbackKey { HARASSMENT_THREATS = "harassment-threats", UNAUTHORIZED_CONTENT = "unauthorized-content", HACKED = "hacked", TECH = "tech", OTHER = "other" } export declare type Feedback = { login: string; name: string; email: string; product?: string; version?: string; shortDescription?: string; longDescription?: string; channelID?: string; reasons?: ComaSeparatedValues | string; details?: string; }; export declare class CMDC_FEEDBACK implements ICOMMAND { action: ACTION; params: { sessionID?: string; clientID?: string; uploadFeedbackUrl?: string; }; } export {};