import type { Element, Style, StyleProps } from "./elements.js"; export declare function box(styleOrChild?: StyleProps | Element, ...children: Element[]): Element; export declare function row(styleOrChild?: StyleProps | Element, ...children: Element[]): Element; export declare function column(styleOrChild?: StyleProps | Element, ...children: Element[]): Element; export declare function text(content: string): Element; export declare function line(content: string, style?: Style): Element; export declare function lines(strings: string[], style?: Style): Element; export declare function list(style: StyleProps, items: string[], selectedIndex?: number): Element; export declare function textInput(style: StyleProps, value?: string): Element;