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