export { TerminalRegion, SectionReference, ComponentReference } from './region.js'; export { getTerminalWidth, getTerminalHeight, isTTY, onResize } from './utils/terminal.js'; export { grid as Grid } from './layout/grid.js'; export { Styled } from './components/styled.js'; export type { GridOptions } from './layout/grid.js'; export type { StyleOptions } from './components/styled.js'; export { fill } from './components/fill.js'; export type { FillOptions } from './components/fill.js'; export { Section, type SectionOptions } from './components/section.js'; export { Spinner, type SpinnerOptions } from './components/spinner.js'; export { Segments, type SegmentsOptions, type Segment } from './components/segments.js'; export { CodeDebug, type CodeDebugOptions, type CodeDebugType } from './components/code-debug.js'; export { prompt } from './utils/prompt.js'; export { autoColor, autoStyle, isAutoColor } from './utils/terminal-theme.js'; export type { AutoColor } from './utils/terminal-theme.js'; export type { RegionOptions, LineContent, TextStyle, Color, ProgressBarOptions, } from './types.js'; import { TerminalRegion } from './region.js'; import type { RegionOptions } from './types.js'; import type { ProgressBarOptions as ProgressBarGridOptions } from './components/progress-bar-grid.js'; export declare function Region(options?: RegionOptions): TerminalRegion; export declare const region: typeof Region; export declare const createRegion: typeof Region; export declare function progressBar(options: ProgressBarGridOptions): import("./component.js").Component; export declare const createProgressBar: typeof progressBar; //# sourceMappingURL=index.d.ts.map