import { HtmlRR0Context } from "../RR0Context.js";
import { CountryCode, Occupation, People } from "@rr0/data";
export declare class PeopleHtmlRenderer {
    protected defaultPreviewFileNames: string[];
    constructor(defaultPreviewFileNames?: string[]);
    renderLink(context: HtmlRR0Context, people: People, pseudoPeopleList: People[], allCountries: Set<CountryCode>, occupations: Set<Occupation>, filterOccupations?: Occupation[], content?: string): HTMLElement;
}
