import { Component } from "react";
declare class SearchResults extends Component {
    state: {
        highlightedIndex: number;
    };
    static defaultProps: {
        input: null;
    };
    highlightPrevResult: () => void;
    highlightNextResult: () => void;
    highlightSpecificResult: (index: any) => void;
    triggerHighlightedResultAction: () => void;
    render(): import("react/jsx-runtime").JSX.Element | null;
}
export default SearchResults;
//# sourceMappingURL=SearchResults.d.ts.map