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