import { IMatch } from '../../base/common/filters'; export declare const iconStartMarker = "$("; export declare function escapeIcons(text: string): string; export declare function markdownEscapeEscapedIcons(text: string): string; export declare function stripIcons(text: string): string; export interface IParsedLabelWithIcons { readonly text: string; readonly iconOffsets?: readonly number[]; } export declare function parseLabelWithIcons(text: string): IParsedLabelWithIcons; export declare function matchesFuzzyIconAware(query: string, target: IParsedLabelWithIcons, enableSeparateSubstringMatching?: boolean): IMatch[] | null; //# sourceMappingURL=iconLabels.d.ts.map