import React from 'react'; import { useAnchorInput } from './useAnchorInput'; import './index.less'; interface AnchorInputProps { style?: React.CSSProperties; placeholder?: string; onSearch?: (v: string) => void; max?: number; } declare const AnchorInput: React.ForwardRefExoticComponent>; export { useAnchorInput }; export default AnchorInput;