import { Timestamp } from './alias'; import { MetaType } from './metaTypeCreator'; import { StrictPick } from './utils'; declare const JSONTimestampSymbol: unique symbol; declare const JSONGeoPointSymbol: unique symbol; declare const JSONDocumentReferenceSymbol: unique symbol; type JSONTimestampSymbol = typeof JSONTimestampSymbol; type JSONGeoPointSymbol = typeof JSONGeoPointSymbol; type JSONDocumentReferenceSymbol = typeof JSONDocumentReferenceSymbol; export declare class JSON { protected Firelord_JSON_Do_Not_Access?: T; } export interface JSONTimestamp extends StrictPick, JSON { } export interface JSONGeoPoint extends JSON { latitude: number; longitude: number; } export interface JSONDocumentReference extends JSON { } export {};