import React from 'react'; declare type NotificationAttributes = React.ComponentPropsWithoutRef<'div'>; export interface NotificationProps extends Omit { /** * To pass custom className to create custom styles */ className?: string; /** * To specify language of New Notification */ lang?: string; /** * To apply New Notification design */ new?: boolean; over?: boolean; /** * To apply Promo Notification design */ promo?: boolean; /** * To apply secondary design */ secondary?: boolean; style?: React.CSSProperties; } export {};