UNPKG

@onesy/ui-react

Version:
22 lines (21 loc) 682 B
import React from 'react'; import { ITextField } from '../TextField/TextField'; import { IPropsAny } from '../types'; export declare type ISmartTextField = ITextField & { placeholder?: any; edit?: boolean; mention?: boolean; multiline?: boolean; onChangeMention?: (value?: string, version?: '@') => any; optionsMention?: any[]; mentionLabel?: (items: any[], props: { addTag?: (value: any) => any; }) => any; additional?: any; miniMenuExtended?: boolean; pasteText?: boolean; HelperTextProps?: any; ColorTextFieldProps?: IPropsAny; }; declare const SmartTextField: React.FC<ISmartTextField>; export default SmartTextField;