import moment from 'moment'; import type { Time } from '@sap-cloud-sdk/odata-common'; /** * @internal */ export declare function deserializeToTime(value: string): Time; /** * @internal */ export declare function serializeFromTime(value: Time): string; /** * @internal * This function can be used for both Edm.DateTime and and Edm.DateTimeOffset. */ export declare function deserializeToMoment(edmDateTime: string): moment.Moment; /** * @internal * This function can be used for both Edm.DateTime and and Edm.DateTimeOffset. */ export declare function serializeFromMoment(momentInstance: moment.Moment): string;