import * as React from "react";
export interface ProjectForDisplay {
    url: string;
    repo: string;
    owner: string;
    id: string;
}
export interface ProjectListProps {
    projects: ProjectForDisplay[];
}
export declare function ProjectList(props: ProjectListProps): React.ReactElement;
//# sourceMappingURL=projectList.d.ts.map