import { type ReactElement } from "react";
/**
 * Per-page meta tags plus history navigation.
 * - Emits hoistable head elements (title, meta, links, stylesheets, scripts) inline; React 19 hoists each one into the document `<head>`.
 * - Does not render `<base>` (not hoistable — that lives in `<Head>` in the `<HTML>` shell component).
 * - Updates `window.history` to match the page URL.
 */
export declare function Head(): ReactElement;
