/** @jsxImportSource @opentui/react */ import type { ReactNode } from "react"; export declare const SELECTABLE_LINE_STYLE: { width: "100%"; height: 1; }; export declare function selectableRowStyle(surface: string): { width: "100%"; height: 1; bg: string; }; export declare function SelectableLine(props: { content?: string | undefined; children?: ReactNode; fg?: string | undefined; bg?: string | undefined; attributes?: number | undefined; wrapMode?: "none" | "char" | "word" | undefined; }): ReactNode;