import { Timestamp } from "firebase/firestore"; type MonkeyTimestamp = Date | Timestamp | string | number | undefined | null; declare class TimeMonkey { #private; private _timestamp; constructor(mts: MonkeyTimestamp); lapse(shortHand?: boolean): string; } declare const timeMonkey: (timestamp: MonkeyTimestamp) => TimeMonkey; export { timeMonkey }; export type { MonkeyTimestamp }; //# sourceMappingURL=TimeMonkey.d.ts.map