import { GenericIdentifierType } from './GenericIdentifierType';
export declare class Parser {
    static getEstimatedPriority(value: string): Promise<number>;
    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<GenericIdentifierType | null>;
    private static calculateRelevance;
    private static applySettings;
}
