export { Head }; import type React from 'react'; /** * Add arbitrary `` tags. * * (The children are teleported to ``.) * * https://vike.dev/Head */ declare function Head({ children }: { children: React.ReactNode; }): null;