import React from 'react'; import { InputProps } from '../input'; interface InputHexProps extends InputProps { cy?: { wrapper?: string; input?: string; message?: string; hex?: string; }; } declare const InputHex: React.FC; export default InputHex;