import React from "react"; type WebsiteScriptsProps = { headerTags?: string; footerTags?: string; }; declare const WebsiteScripts: ({ headerTags, footerTags }: WebsiteScriptsProps) => React.JSX.Element | null; export default WebsiteScripts;