/** * @author yaoxue * @date 2024/08/21 * @description MemoInput */ import React from 'react'; interface MemoInputProps { control: object; update: any; children: React.ReactNode; childProps: any[]; } declare const _default: React.MemoExoticComponent<({ children }: MemoInputProps) => JSX.Element>; export default _default;