import { type TextProps } from "ink"; export declare const renderCursor: (string: string, cursor: number) => string; export declare const useCursor: ({ value, setValue, focus, cursorPosition, }: { value: string; setValue: (value: string) => void; focus: boolean; cursorPosition: number; }) => string; declare const TextArea: ({ value, setValue, focus, cursorPosition, textProps, }: { value: string; setValue: (value: string) => void; focus: boolean; cursorPosition?: number | undefined; textProps?: TextProps; }) => import("react/jsx-runtime").JSX.Element; export default TextArea;