export default Example; declare class Example extends React.Component { static propTypes: { title: PropTypes.Validator; component: PropTypes.Validator; examples: PropTypes.Requireable; }; static defaultProps: { examples: any[]; }; constructor(props: any); constructor(props: any, context: any); renderExamples(examples: any): any; render(): JSX.Element; } import React from "react"; import PropTypes from "prop-types";