/** * TerminalPanelFooter Component. * * Footer bar displaying line count, byte count, and current filter. * Fully composable via StyleSlots. * * @module @mks2508/mks-ui/react/blocks/Terminal/panel/TerminalPanelFooter */ import type { ITerminalPanelFooterProps } from './TerminalPanelFooter.types'; export type { ITerminalPanelFooterProps } from './TerminalPanelFooter.types'; export { terminalPanelFooterStyles } from './TerminalPanelFooter.styles'; export type { TerminalPanelFooterSlot } from './TerminalPanelFooter.styles'; /** * TerminalPanelFooter Component. * * Displays footer with: * - Line count * - Byte count * - Current filter level * - Filtered count (if applicable) * * All visual regions are overridable via the `slots` prop. * * @example * ```tsx * * ``` */ export declare function TerminalPanelFooter({ lineCount, byteCount, filterLevel, filteredCount, totalCount, slots, className, }: ITerminalPanelFooterProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map