/**
 *
 */
export interface JsonObjectVisitor {
    copyAsJsonObject(): object;
    copyAsJsonString(): string;
    enclosedJsonObject(): any;
}
