import { EditInputFC } from '@lingxiteam/editor-types'; import './index.less'; interface MySwitchPropsType { placeholder?: any; onChange: (e: any) => void; initialValue?: string; value?: string; } declare const MyTextArea: EditInputFC; export default MyTextArea;