/** * Dev Tools Constants * * Centralized constants for the dev tools module. * * @since v1.33.3 * @updated v1.41.5 - Dynamic version from package.json, updated min terminal size */ /** * Dev tools version (read from package.json) */ export declare const DEV_VERSION: string; /** * Minimum terminal dimensions */ export declare const MIN_TERMINAL_WIDTH = 110; export declare const MIN_TERMINAL_HEIGHT = 41; /** * Default maximum visible items in lists */ export declare const DEFAULT_MAX_VISIBLE_ITEMS = 8; /** * Maximum playback delay in milliseconds * Used to cap delays during session playback */ export declare const MAX_PLAYBACK_DELAY_MS = 5000; /** * Status message timeout in milliseconds */ export declare const STATUS_MESSAGE_TIMEOUT_MS = 5000; /** * Code context lines for debug markers */ export declare const CODE_CONTEXT_LINES = 5; /** * Transition animation timing (milliseconds) */ export declare const TRANSITION_TIMING: { /** Spinner frame update interval */ readonly SPINNER_FRAME_MS: 80; /** Step message update interval */ readonly STEP_INTERVAL_MS: 300; /** Progress bar update interval */ readonly PROGRESS_INTERVAL_MS: 50; /** Delay after progress reaches 100% before completing */ readonly COMPLETION_DELAY_MS: 200; }; //# sourceMappingURL=constants.d.ts.map