/** * MacroIndicator Component * * Displays macro recording/playback status in the status bar. * * @since v1.62.0 */ import React from 'react'; import type { MacroPlaybackState, MacroRecorderState } from '../keyboard/macro-types.js'; export interface MacroIndicatorProps { /** Recording state */ recorderState?: MacroRecorderState; /** Playback state */ playbackState?: MacroPlaybackState; } declare function MacroIndicatorBase({ recorderState, playbackState }: MacroIndicatorProps): React.ReactElement | null; export declare const MacroIndicator: React.MemoExoticComponent; export {}; //# sourceMappingURL=MacroIndicator.d.ts.map