import { Payload } from "./Payload"; import { StoreLike } from "../StoreLike"; /** * XXX: This is exported for an unit testing. * DO NOT USE THIS in your application. */ export declare const TYPE = "__ALMIN_STORE_IS_CHANGED__"; /** * ChangePayload is that represent a store is changed. */ export declare class StoreChangedPayload implements Payload { type: string; store: StoreLike; constructor(store: StoreLike); } export declare function isStoreChangedPayload(v: Payload): v is StoreChangedPayload;