import { MatchRankFunction } from '../types/MatchRankFunction'; import { BooleanMatchFunction } from '../types/BooleanMatchFunction'; import { StringTransformationFunction } from '../types/StringTransformationFunction'; import { MatchSort } from './MatchSort'; export declare class StringMatchSort extends MatchSort { private indexedStringTransform; private readonly defaultTransformations; constructor(defaultTransformations?: StringTransformationFunction[]); static from(matchRankFunction: MatchRankFunction, transformations?: StringTransformationFunction[]): StringMatchSort; chain(exactRankFunction: MatchRankFunction, transformations?: StringTransformationFunction[]): StringMatchSort; setFilter(filter: BooleanMatchFunction, transformations?: StringTransformationFunction[]): StringMatchSort; }