import { GenericIdentifierType } from './GenericIdentifierType'; export declare class Parser { static getEstimatedPriority(value: string): Promise; static getBestFitQuick(value: string, orderedRendererKeys?: string[]): string | null; static getBestFit(value: string, settings: { type: string; values: { name: string; value: unknown; }[]; }[], orderedRendererKeys?: string[], fallbackToAll?: boolean): Promise; private static calculateRelevance; private static applySettings; }