/// <reference types="react" />
import { ScriptProps } from "next/script";
type GoogleAdSenseProps = {
    publisherId: string;
    strategy?: ScriptProps["strategy"];
    debug?: boolean;
};
export declare function GoogleAdSense({ publisherId, strategy, debug }: GoogleAdSenseProps): JSX.Element | null;
export {};
