import React from "react";
type PropertiesObject = {
    [key: string]: string | number | PropertiesObject;
};
export interface BannerEmbedProps {
    publisherId: string;
    placementId: string;
    format?: string;
    address?: string | string[];
    style?: React.CSSProperties;
    properties?: PropertiesObject;
    _hostUrl?: string;
}
export declare function BannerEmbed({ publisherId, placementId, format, address, style, properties, _hostUrl, }: BannerEmbedProps): React.JSX.Element;
export {};
