declare class Feedback { request: any; constructor(props: any); getCsToken: () => Promise; getChannelTypes: () => Promise; getContentTypes: () => Promise; uploadFeedback: (body?: {}) => Promise; } export default Feedback;