next-google-adsense
Version:
Next.js Google AdSense
14 lines (13 loc) • 373 B
TypeScript
import { type CSSProperties } from "react";
interface DummyAdProps {
size: {
width: number;
height: number;
};
responsive?: boolean;
style?: CSSProperties;
className?: string;
label?: string;
}
export declare const DummyAd: ({ size: { width, height }, responsive, style, className, label, }: DummyAdProps) => JSX.Element;
export {};