/** * Lightweight inline indicator for temporal gaps between messages. */ import { Container } from '@earendil-works/pi-tui'; import type { ChatSpacingKind } from './chat-spacing.js'; export interface TemporalGapOptions { message?: string; gapText?: string; } export declare class TemporalGapComponent extends Container { constructor(options: TemporalGapOptions); setExpanded(_expanded: boolean): void; getChatSpacingKind(): ChatSpacingKind; } //# sourceMappingURL=temporal-gap.d.ts.map