@sanity/default-layout
Version:
The default layout components for Sanity
10 lines • 483 B
TypeScript
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