import React from 'react'; import { SettingNotificationClassesType } from '../types'; declare type SettingNotificationProps = { icon?: { notification?: React.ReactNode; email?: React.ReactNode; whatsApp?: React.ReactNode; line?: React.ReactNode; telegram?: React.ReactNode; }; classes?: SettingNotificationClassesType; onErrorMsg: (msg: string) => void; onSuccessMsg: (msg: string, data: any) => void; }; declare const SettingNotification: ({ icon, classes, }: SettingNotificationProps) => JSX.Element; export default SettingNotification;