import * as React from 'react'; export interface GuideModeBannerProps { /** Banner label (uppercased by the `text-h5` style). */ label?: React.ReactNode; /** Help-icon tooltip copy. `null` hides the help icon entirely. */ tooltip?: React.ReactNode | null; className?: string; } /** * Guide-mode indicator banner — Figma node `7532:328222`. A full-bleed accent * (yellow) strip below the chat header: leading compass icon, the "Guide Mode * Chat" label, and a trailing help icon whose tooltip explains the temporary, * read-only nature of Guide mode. */ export declare function GuideModeBanner({ label, tooltip, className, }: GuideModeBannerProps): React.JSX.Element; //# sourceMappingURL=guide-mode-banner.d.ts.map