/** * Advanced Function Wrappers * Specialized wrapper functions for batch processing and custom logger creation */ import { LoggingOptions } from './decoratorTypes.js'; /** * Batch wrap multiple functions with logging */ export declare function wrapObject any>>(functions: T, options?: LoggingOptions): T; /** * Create a custom logging decorator with preset options */ export declare function createCustomLogger(presetOptions: LoggingOptions): (options?: LoggingOptions) => any>(_target: any, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor | void; //# sourceMappingURL=advancedWrappers.d.ts.map