import type { Alert } from './UIAlert.types'; export declare const useAlertStore: import("pinia").StoreDefinition<"notifications", { notifications: Alert[]; }, {}, { addNotification(notification: Alert): void; removeNotification(notificationId: number): void; resetStore(): void; }>;