import { SVGProps } from 'react'; import { NotificationType } from './Notification'; export declare function SvgSuccess(props: SVGProps): JSX.Element; export declare function SvgError(props: SVGProps): JSX.Element; export declare function SvgWarning(props: SVGProps): JSX.Element; export declare function SvgInfo(props: SVGProps): JSX.Element; export declare const notificationIcons: { success: JSX.Element; error: JSX.Element; warning: JSX.Element; info: JSX.Element; }; declare const SvgIcon: ({ type }: { type: NotificationType; }) => JSX.Element; export default SvgIcon;