import { BaseResponseHandler } from "./base-handler.js";
export declare class ResponseHandlerFactory {
    static getHandler(contentType: string): BaseResponseHandler;
    static getContentTypeByExtension(extension: string): string;
}
