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