import type { DesktopAdType, DesktopPlacementName, MobileAdType, MobilePlacementName } from './@types/ads'; interface Props { placementName: DesktopPlacementName | MobilePlacementName; adType: DesktopAdType | MobileAdType; /** * @TODO Unclear at what level this bit of config is used with placements... */ dataFreestarAd?: string; } declare const AdSlot: import("svelte").Component; type AdSlot = ReturnType; export default AdSlot;