import { EditorInputBase } from '@lingxiteam/editor-types'; import React, { FC } from 'react'; import './index.less'; interface InputWrapperProps { /** * 组件要支持suffix后缀 */ Component: React.ComponentType; value?: any; onChange?: (...e: any[]) => void; getEditorApi?: EditorInputBase['getEditorApi']; className?: string; style?: React.CSSProperties; inputClassName?: string; enableI18n?: boolean; disabled?: boolean; compStyle?: React.CSSProperties; trigger?: string; [key: string]: any; } declare const InputI18nWrapper: FC; export default InputI18nWrapper;