/** Timestamp input shared by Lyra's original conversation surfaces. */ export type LyraTimestamp=Date|string|number; /** Normalizes a supported timestamp through ECMAScript's Date/TimeClip domain. */ export declare function normalizeLyraTimestamp(value:LyraTimestamp|undefined):Date|undefined;