/** * useTerminalSize Hook * Provides reactive terminal dimensions that update on resize * Uses Ink's useStdout for proper integration with the terminal */ export interface TerminalSize { columns: number; rows: number; } /** * Hook that returns current terminal dimensions and re-renders on resize */ export declare const useTerminalSize: () => TerminalSize; //# sourceMappingURL=useTerminalSize.d.ts.map