import { ComponentProps, FC, MouseEventHandler } from 'react'; import { Colors, DeepPartial, RoundedSizes } from '../../types/types'; import { BannerTheme } from './theme'; export interface BannerComponentProps extends ComponentProps<"header"> { className?: string; bordered?: boolean; closable?: boolean; color?: Colors; onClose?: MouseEventHandler; theme?: DeepPartial; buttonClassName?: string; hasMotion?: boolean; motionDistance?: number; rounded?: RoundedSizes; } /** * Banner component * @description The Banner component is used to display a message to the user with a variety of colors and styles, it can be closable or not. It can be used to display a message, a warning, an error, a success message... * @returns React.FC */ export declare const Banner: FC; //# sourceMappingURL=Banner.d.ts.map