export declare class FieldPath { readonly segments: readonly string[]; constructor(...fieldNames: string[]); static documentId(): FieldPath; getPathString(): string; isEqual(other: FieldPath): boolean; toString(): string; }