import React from 'react'; import { IDomEditor } from '@wangeditor/editor'; import './index.less'; interface AutoCompleteProps { onClose: () => void; onSelect: (symbol: string) => void; initialStyle: React.CSSProperties; editor: IDomEditor; } export declare const AutoComplete: React.ForwardRefExoticComponent>; declare const _default: { open({ input, target, editor }: { input: any; target: any; editor: any; }): Promise; Component: React.ForwardRefExoticComponent>; }; export default _default;