/** * Terminal Display — lightweight barrel export. * * Exports the readonly TerminalDisplay component + restty wrapper + chrome. * Depends on restty only (not xterm, not shiki, not xterm addons). * Use `@mks2508/mks-ui/react/blocks/Terminal/display` for minimal deps. * * @module @mks2508/mks-ui/react/blocks/Terminal/display */ export { TerminalDisplay } from './TerminalDisplay'; export { terminalDisplayStyles, terminalDisplayVariants, type TerminalDisplayVariantProps, } from './TerminalDisplay.styles'; export type { ITerminalDisplayProps, ITerminalDisplayRef, TerminalDisplaySlot, } from './TerminalDisplay.types'; export { ResttyTerminal, ResttySessionProvider, useResttySession } from './restty'; export type { IResttyTerminalProps, IResttyTerminalRef } from './restty'; export { TerminalPanelChrome, NOISE_TEXTURE_SVG, terminalScrollStyles } from './panel/TerminalPanelChrome'; export type { ITerminalPanelChromeProps } from './panel/TerminalPanelChrome.types'; export { terminalChromeStyles, terminalChromeVariants, ACCENT_GRADIENTS, type TerminalChromeSlot, } from './panel/TerminalPanelChrome.styles'; export { SYNTHWAVE_TERMINAL_THEME, getTerminalTheme } from './Terminal.theme'; export { hexToResttyColor, xtermThemeToGhostty, getSynthwaveGhosttyTheme, type IResttyThemeColor, type IResttyGhosttyTheme, } from './Terminal.theme.restty'; //# sourceMappingURL=display.d.ts.map