import { Command, Flag } from '@deepkit/app'; import { FrameworkConfig } from '../module.config.js'; import { LoggerInterface } from '@deepkit/logger'; import { Stopwatch, StopwatchStore } from '@deepkit/stopwatch'; /** * @description Prints debugging information about profiler frames. */ export declare class DebugProfileFramesCommand implements Command { protected config: Pick; protected logger: LoggerInterface; protected stopwatchStore: StopwatchStore; protected stopwatch: Stopwatch; constructor(config: Pick, logger: LoggerInterface, stopwatchStore: StopwatchStore, stopwatch: Stopwatch); execute(reset?: boolean & Flag): Promise; }