export default class ScreenshotAccepterHeader extends React.Component { static propTypes: { view: PropTypes.Requireable; }>>; images: PropTypes.Requireable<(PropTypes.InferProps<{ id: PropTypes.Requireable; parentId: PropTypes.Requireable; }> | null | undefined)[]>; stateNameImageIds: PropTypes.Requireable<(string | null | undefined)[]>; retryIndex: PropTypes.Requireable; activeImageIndex: PropTypes.Requireable; showMeta: PropTypes.Validator; totalImages: PropTypes.Validator; acceptedImages: PropTypes.Validator; onClose: PropTypes.Validator<(...args: any[]) => any>; onRetryChange: PropTypes.Validator<(...args: any[]) => any>; onActiveImageChange: PropTypes.Validator<(...args: any[]) => any>; onScreenshotAccept: PropTypes.Validator<(...args: any[]) => any>; onScreenshotUndo: PropTypes.Validator<(...args: any[]) => any>; onShowMeta: PropTypes.Validator<(...args: any[]) => any>; onCommitChanges: PropTypes.Validator<(...args: any[]) => any>; staticImageAccepter: PropTypes.Requireable; accepterDelayedImages: PropTypes.Validator<(PropTypes.InferProps<{ imageId: PropTypes.Validator; stateName: PropTypes.Validator; stateNameImageId: PropTypes.Validator; }> | null | undefined)[]>; acceptableImages: PropTypes.Requireable<{ [x: string]: PropTypes.InferProps<{ id: PropTypes.Validator; parentId: PropTypes.Validator; stateName: PropTypes.Validator; commitStatus: PropTypes.Requireable; originalStatus: PropTypes.Validator; }> | null | undefined; }>; }>>; actions: PropTypes.Validator; }; constructor(props: any); _keyMap: { PREV_SCREENSHOT: string[]; NEXT_SCREENSHOT: string[]; PREV_RETRY: string[]; NEXT_RETRY: string[]; ACCEPT_SCREENSHOT: string[]; UNDO_SCREEN: string; CLOSE_MODAL: string; IGNORE_META_UP: string; IGNORE_META_DOWN: string; IGNORE_META_S: string; }; _keyHandlers: { PREV_SCREENSHOT: (event: any) => void; NEXT_SCREENSHOT: (event: any) => void; PREV_RETRY: () => void; NEXT_RETRY: () => void; ACCEPT_SCREENSHOT: (event: any) => void; UNDO_SCREEN: (event: any) => void; CLOSE_MODAL: any; IGNORE_META_UP: () => void; IGNORE_META_DOWN: () => void; IGNORE_META_S: () => void; }; handlePrevScreenshot: (event: any) => void; handleNextScreenshot: (event: any) => void; handlePrevRetry: () => void; handleNextRetry: () => void; handleScreenshotAccept: (event: any) => void; handleScreenUndo: (event: any) => void; render(): import("react/jsx-runtime").JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';