import type { NotificationsTestHarness } from '../../src/testHarness.js'; import '../../src/testHarness.js'; export declare const apiCallKey = "getNotifications"; export declare const getMockData: () => { items: { created_at: string; id: string; resource_type: string; sub_group: string; created_by: string; subject: string; locations: string[]; resource_id: string; status: string; account_number: string; }[]; self: string; }; export declare const mockDataMeta: { itemsCount: number; todayItemsCount: number; earlierItemsCount: number; unreadCount: number; readCount: number; incidentsCount: number; dcimAlertsCount: number; serviceTicketsCount: number; plannedMaintenanceCount: number; }; export type TelemInfo = { tag: string; text: string; value: string; isVisible: boolean; attributes: { [key: string]: string | boolean; }; }; export declare const fixtureMockApi: () => void; export declare const fixtureBeforeEach: () => Promise; export declare const fixtureAfterEach: () => void; export declare const fixtureBefore: () => Promise; export declare const screenshotAndCompare: (name: string) => Promise;