import INotificationStore from '../../../types/INotificationStore.js';
/**
 * Factory of notifications stores.
 *
 * @param props Properties to initialize the store with
 * @param strategy Function to compare notifications with the context
 * @returns An empty store of notifications
 */
export default function buildStore(props: Record<string, unknown>): INotificationStore;
