/// import type { ScriptProps } from "next/script"; interface GoogleAdSenseProps extends Omit { publisherId?: string; isAutoAd?: boolean; debug?: boolean; } export declare const GoogleAdSense: ({ publisherId, isAutoAd, debug, ...props }: GoogleAdSenseProps) => JSX.Element | null; export {};