import React from 'react';
import '@douyinfe/semi-foundation/lib/es/notification/notification.css';
import { NoticeProps } from '@douyinfe/semi-foundation/lib/es/notification/notificationFoundation';
export default function useNotification(): (React.JSX.Element | {
    success: (config: NoticeProps) => string;
    info: (config: NoticeProps) => string;
    error: (config: NoticeProps) => string;
    warning: (config: NoticeProps) => string;
    open: (config: NoticeProps) => string;
    close: (instanceID: string) => void;
})[];
