export declare const GLOB_SPECIAL_CHARS: RegExp; export declare const GLOB_REGEX_CACHE_MAX_SIZE = 200; export declare const SCOPED_PACKAGE_PATTERN: RegExp; export declare const PACKAGE_NAME_EXCLUSIONS: string[]; export declare const SPINNER_FRAMES: string[]; export declare const LINE_BREAKS: RegExp; export declare const VERSION_PREFIXES: readonly ["==", ">=", "<=", "~=", ">", "<", "=", "^", "~"]; export declare const REPEATING_VERSION_PREFIXES: readonly ["^", "~"]; export declare const STRICT_INEQUALITY_VERSION_PREFIXES: readonly [">", "<"]; export declare const VERSION_COMPARISON_PREFIXES: ("==" | ">=" | "<=" | "~=" | ">" | "<" | "=" | "^" | "~")[]; export declare const escapeRegex: (value: string) => string; export declare const createRegexAlternation: (values: readonly string[]) => string; export declare const VERSION_PREFIX_PATTERN: RegExp; export declare const createAnsiPattern: () => RegExp; export declare const COMMON_PACKAGES: string[]; export declare const SYMBOLS: { readonly success: string; readonly error: string; readonly warning: string; readonly info: string; readonly pinned: string; readonly dot: string; readonly severityMajor: string; readonly severityMinor: string; readonly severityPatch: string; readonly arrow: string; readonly bullet: string; }; export declare const RAW_SYMBOLS: { readonly success: "✓"; readonly error: "✗"; readonly warning: "▲"; readonly info: "◆"; readonly pinned: "■"; readonly dot: "·"; readonly severityMajor: "●"; readonly severityMinor: "●"; readonly severityPatch: "●"; readonly arrow: ">"; readonly bullet: ">"; };