export type TransformFunction = (input: T) => R; export declare class Transformers { static identity(input: T): R; static jsonSerializeDeserialize(obj: T): R; }