/** * [WHO]: CompressionDivider, CompressionAnimationIcon. * [FROM]: React + @/lib/utils. * [TO]: sparkdesign package consumers; output of CLI `add compression-divider` when applicable. * [HERE]: registry/chat/compression-divider.tsx — conversation compression separator for long agent transcripts. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import type { ReactNode } from 'react'; export interface CompressionAnimationIconProps { size?: number; className?: string; } export declare function CompressionAnimationIcon({ size, className }: CompressionAnimationIconProps): import("react/jsx-runtime").JSX.Element; export declare namespace CompressionAnimationIcon { var displayName: string; } export interface CompressionDividerProps { className?: string; icon?: ReactNode; text?: ReactNode; ariaLabel?: string; isPlaying?: boolean; } export declare function CompressionDivider({ className, icon, text, ariaLabel, isPlaying, }: CompressionDividerProps): import("react/jsx-runtime").JSX.Element; export declare namespace CompressionDivider { var displayName: string; } export declare const ContextCompressionDivider: typeof CompressionDivider; export type ContextCompressionDividerProps = CompressionDividerProps;