import type { AllHTMLAttributes, ReactNode } from 'react'; type VariantType = 'default' | 'info' | 'success' | 'warning' | 'danger'; type SidebarBannerProps = { title?: ReactNode; linkText?: string; linkProps?: AllHTMLAttributes; onClick?: () => void; variant?: VariantType; onClose?: () => void; children?: ReactNode; addon?: ReactNode; }; export declare const SidebarBanner: ({ title, linkText, linkProps, variant, addon, onClose, children, ...props }: SidebarBannerProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SidebarBanner.d.ts.map