import { RespondWithConfig } from './types.js';
export declare class Negotiator {
    config: RespondWithConfig;
    private contentTypes;
    private handlerTypes;
    constructor(config: RespondWithConfig);
    getDefaultHandler(): string;
    getAcceptedTypes(matcherNames: string[]): string[];
    getHandlerFromContentType(contentType: string, matcherNames: string[]): string | undefined;
}
