import React from 'react';
export type Props = {
    message: string;
    icon?: React.ReactNode;
    bgColor?: string;
    highlightColor?: string;
} & React.HTMLAttributes<HTMLDivElement>;
declare const NotificationBar: ({ icon, bgColor, highlightColor, message, ...rest }: Props) => React.JSX.Element;
export { NotificationBar };
