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.
8 lines (7 loc) • 392 B
TypeScript
/// <reference types="react" />
import { InputFieldProps } from './InputField';
import { MaskedInputProps } from '../Inputs';
import { GridItemProps } from '../types';
export declare type MaskedInputFieldProps = InputFieldProps & MaskedInputProps & GridItemProps;
declare const MaskedInputField: ({ name, ...props }: MaskedInputFieldProps) => JSX.Element;
export { MaskedInputField };