/// export interface HeadProps { title?: string; appTitle?: string; } export default function Head({ title, appTitle }: HeadProps): JSX.Element;