import { GuidValue } from ".";
export interface StoreDefintion {
    id: GuidValue;
    name?: string;
}
export interface StateMutation<T> {
    oldState: T;
    newState: T;
}
export interface MutatableState<T> {
    state: T;
}
