import { Value } from './Value';
/**
 * An object of JSON [[Value]]s
 */
export interface Object {
    [k: string]: Value;
}
