/** * FooterStatusBar - Persistent footer with separator and status line * * Wraps the existing StatusLine component with a horizontal separator * to create a Claude Code-style footer bar at the bottom of TUI screens. */ import React from 'react'; import { type StatusLineProps } from './StatusLine.js'; /** * Props for the FooterStatusBar component. * Passes through all StatusLine props directly. */ export interface FooterStatusBarProps extends StatusLineProps { } /** * FooterStatusBar component * * Renders a full-width horizontal separator line followed by the existing * StatusLine component. Designed to be placed at the bottom of each * interactive TUI screen, below the input prompt. * * @example * ```tsx * * ``` */ export declare function FooterStatusBar(props: FooterStatusBarProps): React.ReactElement;