import { FTypes } from '../../core/types'; import { Type } from '../../lib/type'; import { IPostA, IUser } from './firestore-schema'; export declare const userData: Type.Merge; export declare const userDataJson: { timestamp: string; name: string; displayName: string | null; age: number; tags: { id: number; name: string; }[]; options: { a: boolean; b: string; } | undefined; }; export declare const postAData: IPostA;