export declare class NCJsonSerializer {
    static encode<T>(obj: T): string;
    static decode<T>(json: string): T;
}
