import type { BasicColors } from '../app/types'; interface Props { children?: string; backgroundColor?: BasicColors; size?: 'sm' | 'md' | 'lg'; hasNotification: boolean; } declare const Notification: ({ children, hasNotification, backgroundColor, size, }: Props) => import("react/jsx-runtime").JSX.Element; export default Notification;