import { FTypes, STypes } from '../types'; export declare const firestorePathToLoc: (path: string) => string; export declare const getCollectionOptions: (schemaOptions: STypes.RootOptions.All, loc: string) => STypes.CollectionOptions.Meta; export declare const createConverter: (decoder: STypes.Decoder | undefined) => { fromFirestore: (snap: FTypes.QueryDocumentSnap, options: FTypes.SnapshotOptions) => any; toFirestore: (data: any) => any; };