import type { Options } from "./getSearchScore";
interface Props<T> {
    data: T[];
    key?: keyof T;
    maxResult?: number;
    query: string;
    minScore?: number;
    options?: Options;
}
export default function getScoredResults<T>({ maxResult, data, query, key, minScore, options }: Props<T>): T[];
export {};
