export * from '@platform/fsdb.types/lib/types'; export * from '@platform/types'; export * from '../types'; import { Json } from '@platform/types'; import { IDbTimestamps } from '@platform/fsdb.types/lib/types'; export declare type IDoc = IDbTimestamps & { _id: string; data?: D; }; export declare type IIndexOptions = { fieldName: string; unique?: boolean; sparse?: boolean; expireAfterSeconds?: number; };