import { default as React } from 'react'; type FormulaSearchProps = React.HTMLAttributes & { from?: 'fx' | 'cell'; lockedTop?: number | null; onTopComputed?: (top: number) => void; }; declare const FormulaSearch: React.FC; export default FormulaSearch;