/** * useResponsive Hook * * Centralized terminal-width-aware responsive configuration. * Provides breakpoint classification, content dimensions, and layout flags. * * @since v2.7.21 - New unified responsive system */ export type Breakpoint = 'compact' | 'normal' | 'wide' | 'ultrawide'; export interface ResponsiveConfig { width: number; height: number; breakpoint: Breakpoint; contentWidth: number; contentHeight: number; canSplitPane: boolean; canSideBySide: boolean; abbreviate: boolean; } export declare function useResponsive(): ResponsiveConfig; //# sourceMappingURL=useResponsive.d.ts.map