import { default as React } from 'react'; export type BannerProps = { content: React.ReactNode; button?: { text: string; link: string; }; onClose?: () => void; }; export declare const Banner: ({ content, button, onClose }: BannerProps) => React.JSX.Element;