import React, { FC } from 'react'; interface IReactGoogleAdsAdvanced extends React.DetailedHTMLProps, HTMLModElement> { slot: string; clientId: string; adFormat?: string; adFullWidthResponsive?: string; className?: string; style?: React.CSSProperties; } declare global { interface Window { adsbygoogle: any; } } declare const GoogleAd: React.FC; declare const GoogleAdsObserver: FC<{}>; export { GoogleAd, GoogleAdsObserver };