import { FirestoreModelFieldValueConverter } from "../firestore_model_field_value_converter"; /** * FirestoreConverter for [ModelTimestamp]. * * [ModelTimestamp]用のFirestoreConverter。 */ export declare class FirestoreModelTimestampConverter extends FirestoreModelFieldValueConverter { private static _createTimestampFromMicroseconds; /** * FirestoreConverter for [ModelTimestamp]. * * [ModelTimestamp]用のFirestoreConverter。 */ constructor(); type: string; convertFrom(key: string, value: any, original: { [field: string]: any; }, firestoreInstance: FirebaseFirestore.Firestore): { [field: string]: any; } | null; convertTo(key: string, value: any, _original: { [field: string]: any; }, firestoreInstance: FirebaseFirestore.Firestore): { [field: string]: any; } | null; }