/** * Timed method decorator */ declare function timed(delay?: number, errorTimeoutConstructor?: new () => Error): (target: any, key: string | symbol, descriptor: TypedPropertyDescriptor<(...params: Array) => any>) => TypedPropertyDescriptor<(...params: Array) => any>; export default timed;