/** * create a reference to target * return the reference and a revoke function that will invalidate the reference * * further call will throw an type error * * TODO: currently no support for class private field - do we need a transparent proxy in this library? */ export declare const borrow: (value: T) => [T, () => void]; //# sourceMappingURL=borrow.d.ts.map