import React from 'react';
import { SiteWideBannerType } from "./types";
export type Props = {
    site: string;
    currentUrl: string;
    banner: SiteWideBannerType;
    isMobile?: boolean;
    onClose?: () => void;
};
declare const SiteWideBanner: ({ site, banner, isMobile, onClose, currentUrl, }: Props) => React.JSX.Element;
export { SiteWideBanner };
