/** @noSelfInFile */ declare interface MoonsharpJson { serialize: (this: void, content: any) => string; parse: (this: void, content: string) => T; isnull: (this: void, value: any) => boolean; null: (this: void) => any; } declare const json: MoonsharpJson;