/** * TipsBar - Contextual hints bar * * Renders a single dimmed line with slash commands highlighted in blue. */ import React from 'react'; /** * Props for TipsBar component */ export interface TipsBarProps { /** Tip text - slash commands (e.g. /help) are auto-highlighted */ text: string; } /** * TipsBar component * * Displays contextual tips with slash commands highlighted in blue. * * @example * ```tsx * * ``` */ export declare function TipsBar({ text }: TipsBarProps): React.ReactElement;