/**@todo * [ ] adjust component and integrate when service is ready * [ ] uncomment functions and tweak when options > 1 */ 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, onErrorMsg, onSuccessMsg, }: SettingNotificationProps): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { icon: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; classes: { defaultValue: { value: string; }; description: string; name: string; required: boolean; type: { name: string; }; }; onErrorMsg: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; onSuccessMsg: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }; export default SettingNotification;