import React from 'react';
type FpsCounterProps = {
/**
* Show detailed per-phase timing breakdown.
* @default false
*/
detailed?: boolean;
/**
* Rolling window for FPS calculation in milliseconds.
* @default 1000
*/
sampleWindowMs?: number;
};
/**
* Displays real-time frame rate and render timing.
*
* Subscribes to Ink's frame events via `useFps` and shows:
* - Current FPS (color-coded: green ≥50, yellow ≥30, red <30)
* - Last frame duration
* - Optionally: per-phase breakdown (renderer, diff, optimize, write, yoga)
*
* Usage:
* ```tsx
*
*
* ```
*/
export declare function FpsCounter({ detailed, sampleWindowMs, }: FpsCounterProps): React.ReactNode;
export {};
//# sourceMappingURL=FpsCounter.d.ts.map