import React, { Dispatch, SetStateAction } from 'react';
interface SearchResultsProps {
    onClose: () => void;
    setChildContainerRef: Dispatch<SetStateAction<HTMLDivElement | null>>;
    setPointerOverlayRef: Dispatch<SetStateAction<HTMLDivElement | null>>;
    small?: boolean;
}
export declare function SearchResults({ onClose, setChildContainerRef, setPointerOverlayRef, small, }: SearchResultsProps): React.JSX.Element;
export {};
//# sourceMappingURL=SearchResults.d.ts.map