import { HTMLAttributes } from 'react';
import { IInputProps } from '../input';
export declare type IHexInputProps = HTMLAttributes<HTMLInputElement>;
export declare function HexInput(props: Omit<IInputProps, 'value' | 'onValueChange'>): JSX.Element;
