import React from 'react';
import type { SearchResult, DisplayOptions } from '../types/index.js';
interface Props {
    results: SearchResult[];
    query: string;
    options: DisplayOptions;
    onSelect: (result: SearchResult) => void;
    onNewSearch: (query: string, exactMatch: boolean) => void;
    onQuit: () => void;
}
export declare function SearchResults({ results, query, options, onSelect, onNewSearch, onQuit, }: Props): React.JSX.Element;
export {};
