export declare function matchStrings(searchString: string, matchString: string, options?: {
    weight?: number;
    ignoreCase?: boolean;
    ignoreSpaces?: boolean;
    ignoreWord?: boolean;
}): number;
