import { Notification } from './Notification';
/**
 * @fileoverview Storage class
 * Stores the notifications in the local storage
 */
export declare class Storage {
    private storeKey?;
    constructor(storeKey?: string | undefined);
    getAll(): any[];
    save(data: Notification[]): void;
}
//# sourceMappingURL=Storage.d.ts.map