import * as React from "react"; export interface HeadProps extends React.ThHTMLAttributes { truncate?: boolean; } declare const Head: ({ className, children, truncate, ...props }: HeadProps) => React.JSX.Element; export { Head };