UNPKG

@aliretail/react-materials-components

Version:
10 lines (9 loc) 274 B
/// <reference types="react" /> import { IFormulaConfig } from './interface'; interface IProps { value: string; onChange: (value: string) => void; configList: IFormulaConfig[]; } declare const CoreInput: (props: IProps) => JSX.Element; export default CoreInput;