export type NodeFunction = (n: Array) => void; export interface Notifications { nodesCreated: NodeFunction | null; nodesDeleted: NodeFunction | null; } export declare const notifications: Notifications;