/** * addComputed (DEPRECATED) * * @deprecated Please consider using `derive` or `proxyWithComputed` instead. */ export declare function addComputed_DEPRECATED(proxyObject: T, computedFns_FAKE: { [K in keyof U]: (snap_FAKE: T) => U[K]; }, targetObject?: any): any; declare type Awaited = T extends Promise ? V : T;