import type { Component } from "jsx-md";
import type { PackageJSON } from "../PackageJSON";
/** @internal */
interface Props {
    pkg: Readonly<PackageJSON>;
    title?: string;
}
/** Display a section linking to the homepage defined in package.json */
export declare const HomepageFromPkg: Component<Readonly<Props>>;
export {};
