import { Cipher } from '../cipher.js'; declare const SAPPHIRE_PROP = "sapphire"; export type SapphireAnnex = { [SAPPHIRE_PROP]: { cipher: Cipher; }; }; export type Hooks = { [K in keyof T]?: T[K]; }; export declare function makeProxy(upstream: U, cipher: Cipher, hooks: Hooks): U & SapphireAnnex; export {}; //# sourceMappingURL=utils.d.ts.map