import { GenericIdentifierType } from './GenericIdentifierType';
export declare class Parser {
    static getEstimatedPriority(value: string): number;
    static getBestFit(value: string, settings: {
        type: string;
        values: {
            name: string;
            value: any;
        }[];
    }[]): Promise<GenericIdentifierType>;
}
