import { Entity } from '../types';
export declare type TypeMap<T extends Entity = Entity> = {
    [key in T['type']]: key;
};
export declare type TypeMapGeneric<T extends {
    type: string;
} & object = {
    type: string;
}> = {
    [key in T['type']]: key;
};
