import { type RootComponentProps } from '../RootComponent/RootComponent'; export interface InputLikeProps extends RootComponentProps { length: number; index: number; value?: string | undefined; label?: string | undefined; onElementSelect?: ((index: number) => void) | undefined; } export declare const InputLike: ({ value, length, index, onElementSelect, onFocus, label, readOnly, onKeyDown, ...restProps }: InputLikeProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InputLike.d.ts.map