export interface InspectLogOptions { tag?: string; logArgs?: boolean; logResult?: boolean; logDuration?: boolean; } export declare function InspectLog(options?: InspectLogOptions): (_target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function InspectTrackTime(label?: string): (_target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; export declare function InspectCatch(options?: { fallback?: any; tag?: string; }): (_target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;