@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
8 lines (7 loc) • 430 B
TypeScript
import { default as React } from 'react';
import { FieldValues } from 'react-hook-form';
import { FormFieldPropsBase } from './types';
import { PartialBy } from '../../../../shared/types/utils';
declare const FormFieldEmailContent: <FormFields extends FieldValues>(props: PartialBy<FormFieldPropsBase<FormFields>, "placeholder">) => React.JSX.Element;
export declare const FormFieldEmail: typeof FormFieldEmailContent;
export {};