interface MatchResult { match: boolean; pos?: [number, number]; score: number; } export declare function fuzzyMatch(pattern: string, str: string): MatchResult; export declare function labelShouldBeTruncated(label: string): boolean; export declare function convertToMiddleEllipsis(label: string): string; export declare function getFuzzyMatchFullLabelPosition(pattern: string, fullLabel: string | undefined): number[] | undefined; export {};