export declare class DocumentReference { readonly id: string; readonly path: string; private constructor(); static fromPath(path: string): DocumentReference; toJSON(): { __type__: 'documentReference'; id: string; path: string; }; private static validatePath; }