import { IN8nHttpFullResponse } from 'n8n-workflow'; import { PostReceiveAction } from '../types'; export declare function getResponseContentType(response: IN8nHttpFullResponse): string; export declare function getFileTypeFromContentType(contentType: string): string; export declare function getFileExtensionFromContentType(contentType: string): string; export declare function isBinaryResponse(contentType: string): boolean; export declare const processBinaryResponseData: PostReceiveAction;