import React from 'react'; type NotificationContent = string | React.ReactNode; interface NotificationOptions { id?: string; type?: string; autoCloseAfter?: number; } export declare function useNotification(): readonly [(content: NotificationContent, { id, type, autoCloseAfter }?: NotificationOptions) => void, (id?: string) => void]; export {};