import { Component } from "jsx-md";
import type { Contributor } from "./ContributorsTable";
/** @internal */
interface Props {
    title?: string;
    repo: string;
    owner: string;
    contributors: Contributor[];
    additionalContributorsCount?: number;
}
/** Displays a contributors section. */
export declare const ContributorsSection: Component<Props>;
export {};
