type Id = number | string | symbol;
export interface Base<I extends Id> {
    __stateId: I;
}
export type GenericState = Base<Id>;
export {};
