export type Value = string | number | boolean; export interface JsonData { [key: string]: Value; } export declare const load: () => Promise;