import { type ReactNode } from "react"; export declare function useFuzzySort({ paths, searchingFor, limit, }: { paths: string[]; searchingFor: string; limit?: number; }): Fuzzysort.Results; export declare function SearchOverlay({ children }: { children: ReactNode; }): import("react/jsx-runtime").JSX.Element;