export declare function useNotifications(): { addNotification: (config: Omit) => void; removeNotification: (id: string) => void; clearNotifications: () => void; notifications: import("..").NotificationConfig[]; }; export declare function useAddNotification(): (config: Omit) => void; export declare function useRemoveNotification(): (id: string) => void; export declare function useClearNotifications(): () => void;