export declare enum AdResourceType { Static = "static", Iframe = "iframe", Html = "html" } export type AdResource = { type: AdResourceType.Static; url: string; creativeType: string; } | { type: AdResourceType.Iframe; url: string; } | { type: AdResourceType.Html; markup: string; };