///
import { React } from '../common';
import { ISuites } from '../types';
import '../generated/specs.g';
export interface IPageProps {
suites: ISuites;
}
export interface IPageState {
suites: ISuites;
}
export default class Page extends React.Component {
state: IPageState;
static getInitialProps(props: any): Promise<{
suites: ISuites;
}>;
componentWillMount(): void;
componentDidMount(): void;
private updateState();
render(): JSX.Element;
}