import type { ButtonProps } from 'react-node-insim'; type Props = Omit & { rows?: number; /** Maximum number of characters per row */ cols: number; /** Height of each row of text */ rowHeight: number; }; export declare function TextBox({ rows: rowsProp, cols, rowHeight, top, left, width, children, align, background, color, variant, UCID, ...props }: Props): import("react").JSX.Element; export {};