import * as React from 'react'; import { RouteComponentProps } from 'react-router'; import * as GQL from '../../backend/graphqlschema'; import { RepoHeaderContributionsLifecycleProps } from '../RepoHeader'; interface Props extends RouteComponentProps<{}>, RepoHeaderContributionsLifecycleProps { repo: GQL.IRepository; } /** * Properties passed to all page components in the repository stats area. */ export interface RepositoryStatsAreaPageProps { /** * The active repository. */ repo: GQL.IRepository; } /** * Renders pages related to repository stats. */ export declare class RepositoryStatsArea extends React.Component { private subscriptions; componentWillUnmount(): void; render(): JSX.Element | null; } export {}; //# sourceMappingURL=RepositoryStatsArea.d.ts.map