import { SvgIconType } from '../SvgIcon/svg-icon-type'; import { PropsWithChildren } from 'react'; export type NotificationType = 'info' | 'warning' | 'error' | 'default'; type NotificationMode = 'block' | 'icon'; type NotificationSize = 'sm' | 'md'; type GenericNotificationProps = { type?: NotificationType; size?: NotificationSize; icon?: SvgIconType; className?: string; }; type NotificationProps = GenericNotificationProps & { mode?: NotificationMode; }; export declare function Notification({ mode, children, ...props }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};