import { MatchingAlgorithm } from "./types";
export declare const headersToObject: (headers: any) => Record<string, string>;
export interface NamedItem {
    id: number;
    name: string;
}
export declare function enhanceMatchingAlgorithm<T extends {
    matching_algorithm: MatchingAlgorithm;
}>(obj: T): T & {
    matching_algorithm: NamedItem;
};
export declare function enhanceMatchingAlgorithmArray<T extends {
    matching_algorithm: MatchingAlgorithm;
}>(objects: T[]): (T & {
    matching_algorithm: NamedItem;
})[];
