export interface FileFormat {
    stringify(content: any): Buffer;
    parse(content: Buffer): any;
}
export declare const jsonFormat: FileFormat;
export declare const yamlFormat: FileFormat;
export declare const detectHarFormat: (fileName: string) => FileFormat;
