import { FC } from "react"; interface Props { onSearch: (key: string) => void; keyword?: string; onMoving?: (direction: MoveDirection) => void; onSymbolSelect?: () => void; } export declare enum MoveDirection { Up = 0, Down = 1 } export declare const SearchForm: FC; export {}; //# sourceMappingURL=search.d.ts.map