import { Container } from "@oh-my-pi/pi-tui"; import type { Rule } from "../../capability/rule"; /** * Component that renders a TTSR (Time Traveling Stream Rules) notification. * Shows when a rule violation is detected and the stream is being rewound. */ export declare class TtsrNotificationComponent extends Container { #private; private readonly rules; constructor(rules: Rule[]); setExpanded(expanded: boolean): void; isExpanded(): boolean; }