import {ReactCookieProps} from "react-cookie/cjs/types"; declare namespace Feedback { interface State { show: '' | 'feedback' | 'success' | 'error' | 'screenshot' | 'recorder' screenshot?: Screenshot.Data screenshotError?: string record?: Record.Data tusUniqIdRecord?: string, tusUploadedRecord: boolean, tusUniqIdScreenshot?: string, tusUploadedScreenshot: boolean, uploadProgress?: number uploadProgressTusScreenshot?: number recorderError?: any types?: {label: string, value: string}[] newTaskUrl?: string } interface Props extends ReactCookieProps { config: Config } interface Config { type?: Array<{label: string, value: string}> color?: string headers?: any hotkey?: boolean url: string tus?: string pageData?: any project?: string forceHtml2Image?: boolean, userRights?: Array<'close' | 'comment' | 'assign'> } interface Data { assign?: string type: string title: string description: string tusUniqIdScreenshot?: string videoMimeType?: string } }