import type Store from "./DataStore"; export default class StoreEvent { type: string; target: Store; parent: Store; root: Store; constructor(type: string, target: Store); stopped: boolean; stopPropagation: () => void; isStopped: () => boolean; }