export default class ScreenshotAccepterMeta extends React.Component<any, any, any> {
    static propTypes: {
        showMeta: PropTypes.Validator<boolean>;
        image: PropTypes.Requireable<PropTypes.InferProps<{
            parentId: PropTypes.Requireable<string>;
        }>>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): import("react/jsx-runtime").JSX.Element | null;
}
import React from 'react';
import PropTypes from 'prop-types';
