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