import { KeyofBase } from "../key-of-base";
export type Dictionary<Type, Keys extends KeyofBase = string> = {
    [key in Keys]: Type;
};
