import { INTERNAL_Snapshot as Snapshot } from 'valtio/vanilla'; /** * proxyWithComputed (DEPRECATED) * * @deprecated Please follow "Computed Properties" guide in docs. */ export declare function proxyWithComputed_DEPRECATED(initialObject: T, computedFns: { [K in keyof U]: ((snap: Snapshot) => U[K]) | { get: (snap: Snapshot) => U[K]; set?: (state: T, newValue: U[K]) => void; }; }): T & U; declare type Awaited = T extends Promise ? V : T;