/// import "./index.less"; interface Props { name: string; control: any; children?: any; required?: boolean; label?: string; textPrefix?: any; textCenter?: string; textPost?: string; decorator?: string; className?: string; rules?: any; trigger?: any; secondTrigger?: string; customOnChange?: any; } declare function CustomInput(props: Props): JSX.Element; export default CustomInput;