import { JSONValue, JSONObject } from "../types"; export declare class SerializationError extends Error { } export interface ISerializer { toJSON(value: DataT): JSONValue; fromJSON(value: JSONValue): DataT; } export declare function getProperty(jsonValue: JSONObject, key: string, required?: boolean): T;