import { Component } from "jsx-md";
/** @internal */
interface Props {
    contributors: Contributor[];
    itemsPerRow?: number;
    avatarSize?: number;
}
export interface Contributor {
    id: number;
    name: string;
}
/** Displays a contributors table with avatar. This component returns raw HTML for a more complex layout structure. */
export declare const ContributorsTable: Component<Props>;
export {};
