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