import React from 'react'; export interface withRegisterProps { registerComplete?: () => void; } /** * 注册Input */ export declare const registerInput: () => void; /** * 通过高阶函数注册所有内置Input组件 * @param WrappedComponent * @returns */ declare function withRegister(WrappedComponent: React.ComponentClass | React.FunctionComponent): React.ForwardRefExoticComponent & React.RefAttributes>; export default withRegister;