import type { IFormatHandler } from "./format.interface.js"; export declare class FormatHandlerFactory { private static handlers; static registerHandler(format: string, handler: IFormatHandler): void; static getHandler(format: string): IFormatHandler | undefined; static getSupportedFormats(): string[]; static hasHandler(format: string): boolean; static getAllHandlers(): Map; }