import { MatchPredicate } from '../types/MatchPredicate'; export declare class StringMatchPredicate { static acronymContainsAllCharacters: MatchPredicate; static acronymContainsAllCharactersInOrder: MatchPredicate; static acronymStartsWith: MatchPredicate; static contains: MatchPredicate; static containsAllCharacters: MatchPredicate; static containsAllCharactersInOrder: MatchPredicate; static equals: MatchPredicate; static fullAcronymContainsAllCharacters: MatchPredicate; static fullAcronymContainsAllCharactersInOrder: MatchPredicate; static hasAcronym: MatchPredicate; static hasPart: MatchPredicate; static hasPartContainingAllCharacters: MatchPredicate; static hasPartContainingAllCharactersInOrder: MatchPredicate; static hasPartStartingWith: MatchPredicate; static hasWord: MatchPredicate; static hasWordContainingAllCharacters: MatchPredicate; static hasWordContainingAllCharactersInOrder: MatchPredicate; static hasWordStartingWith: MatchPredicate; static startsWith: MatchPredicate; static startsWithPartContainingAllCharacters: MatchPredicate; static startsWithPartContainingAllCharactersInOrder: MatchPredicate; static startsWithWordContainingAllCharacters: MatchPredicate; static startsWithWordContainingAllCharactersInOrder: MatchPredicate; }