export class FirstPageLink extends React.Component { static defaultProps: { disabled: boolean; onClick: null; template: null; }; static propTypes: { disabled: PropTypes.Requireable; onClick: PropTypes.Requireable<(...args: any[]) => any>; template: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); } import React from "react"; import PropTypes from "prop-types";