import { CSSProperties } from "preact/compat"; type Props = { style?: CSSProperties; className?: string; placeholder?: string; autoFocus?: boolean; onEnter?: (value: string) => void; onEscape?: (value: string) => void; options?: Array; }; declare const TextOptionsInput: ({ style, className, placeholder, autoFocus, onEnter, onEscape, options }: Props) => import("preact/compat").JSX.Element; export default TextOptionsInput;