import type { ReactNode } from "react";
import type { DocumentationElementProps } from "../../util/element.js";
import { type AbsolutePath } from "../../util/path.js";
interface DocumentationCardProps extends DocumentationElementProps {
    path: AbsolutePath;
}
/** Card renderer for a `tree-documentation` element — a summary card showing the heading, signatures, and description. */
export declare function DocumentationCard({ path, title, name, kind, description, signatures }: DocumentationCardProps): ReactNode;
export {};
