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 branches area. */ export interface RepositoryBranchesAreaPageProps { /** * The active repository. */ repo: GQL.IRepository; } /** * Renders pages related to repository branches. */ export declare class RepositoryBranchesArea extends React.Component { private subscriptions; componentWillUnmount(): void; render(): JSX.Element | null; } export {}; //# sourceMappingURL=RepositoryBranchesArea.d.ts.map