import { IdentityConverter, ParamValueModel } from "@odata2ts/converter-api"; export declare class IdentityConverterImpl implements IdentityConverter { id: string; from: string; to: string; convertFrom(value: ParamValueModel): ParamValueModel; convertTo(value: ParamValueModel): ParamValueModel; } export declare function getIdentityConverter(): IdentityConverter;