/// export type InputValue = string | undefined; /** * @desc 管理输入框input和单选框Radio的值 * @param defaultValue 初始值 */ export default function useInputValue(defaultValue?: InputValue): [InputValue, (e: React.ChangeEvent) => void];