import { JsonValue } from "../json-value";
export type JsonObject = {
    [Key in string]: JsonValue;
};
