import type { NotificationItem, TimedNotificationItem } from 'react-cosmos-core'; type UseCosmosNotificationReturn = { pushSticky(notification: NotificationItem): void; removeSticky(notificationId: string): void; pushTimed(notification: TimedNotificationItem): void; }; export declare function useCosmosNotification(): UseCosmosNotificationReturn; export {};