export declare class Timestamp { readonly seconds: number; readonly nanoseconds: number; constructor(seconds: number, nanoseconds: number); static now(): Timestamp; static fromDate(date: Date): Timestamp; static fromMillis(milliseconds: number): Timestamp; toDate(): Date; toMillis(): number; isEqual(other: Timestamp): boolean; valueOf(): string; } //# sourceMappingURL=timestamp.d.ts.map