import * as React from "react";
import { SortOrder } from "../lib/routes/web-app/repositoryListPage";
export interface RepoForDisplay {
    url: string;
    repo: string;
    owner: string;
    id: string;
    score?: number;
    /**
     * Whether to show the full path of the repo
     */
    showFullPath?: boolean;
}
export interface RepoListProps {
    repos: RepoForDisplay[];
    virtualProjectCount: number;
    sortOrder: SortOrder;
    byOrg: boolean;
    expand: boolean;
}
export declare function RepoList(props: RepoListProps): React.ReactElement;
//# sourceMappingURL=repoList.d.ts.map