export declare function bench any>(fn: T, name?: string): T; declare function BenchField any>(_value: undefined, context: ClassFieldDecoratorContext): (value: T) => T; declare function BenchMethod any>(value: T, context: ClassMethodDecoratorContext): T; export declare const Bench: typeof BenchField & typeof BenchMethod; export declare function measure(cb: () => T): T; export {};