//#region src/utils/proxies.d.ts /** * Creates a proxy that throws an error when any property is accessed, function is called, * or any other operation is performed on it. * * Useful for placeholder values that should never actually be used at runtime. */ declare function throwingProxy(error: string | Error): T; declare function logged(name: string, toLog: T, options?: {}): T; declare function createLazyProxy(factory: () => FactoryResult): FactoryResult; //#endregion export { createLazyProxy, logged, throwingProxy }; //# sourceMappingURL=proxies.d.ts.map