@aliretail/react-materials-components
Version:
21 lines (20 loc) • 532 B
TypeScript
/// <reference types="react" />
import { IFormulaConfig } from './interface';
interface IProps {
value: string;
onChange: (value: string) => void;
configList: IFormulaConfig[];
noWrapper?: boolean;
dialogTitle?: string;
isPreview?: boolean;
disabled?: boolean;
onOpenDialog?: () => Promise<any>;
onCloseDialog?: (newValue: any) => Promise<any>;
}
declare const FormulaInput: {
(props: IProps): JSX.Element;
defaultProps: {
onChange(): void;
};
};
export default FormulaInput;