5 lines
297 B
TypeScript
5 lines
297 B
TypeScript
import type { DetailedHTMLProps, HTMLAttributes, PropsWithChildren } from "react";
|
|
type Props = PropsWithChildren<DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>>;
|
|
export default function Head({ children, ...props }: Props): import("react/jsx-runtime").JSX.Element;
|
|
export {};
|