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