UNPKG

react-hook-form-chakra-fields

Version:

A collection of form fields on top of simple and accessible react component library [Chakra UI](https://chakra-ui.com/) and performant form library [React Hook Form](https://react-hook-form.com/), integrated with many other js/ts libraries.

7 lines (6 loc) 328 B
/// <reference types="react" /> import { MaskedInputProps as TextMaskedInputProps } from 'react-text-mask'; import { InputProps } from '@chakra-ui/react'; export declare type MaskedInputProps = InputProps & TextMaskedInputProps; declare const MaskedInput: (props: MaskedInputProps) => JSX.Element; export { MaskedInput };