@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
5 lines (4 loc) • 531 B
TypeScript
import React, { ForwardRefRenderFunction } from 'react';
import { AddressRef, WebAddressProps } from "../../types";
export declare const InternalAddress: ForwardRefRenderFunction<AddressRef, Partial<WebAddressProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange' | 'defaultValue' | 'onLoad' | 'title'>>;
export declare const Address: React.ForwardRefExoticComponent<Partial<WebAddressProps> & Omit<React.HTMLAttributes<HTMLDivElement>, "title" | "defaultValue" | "onChange" | "onLoad"> & React.RefAttributes<AddressRef>>;