import { BinaryDataQueryDto, BinaryDataSignedQueryDto } from '@n8n/api-types'; import { Request, Response } from 'express'; import { BinaryDataService } from 'n8n-core'; export declare class BinaryDataController { private readonly binaryDataService; constructor(binaryDataService: BinaryDataService); get(_: Request, res: Response, { id: binaryDataId, action, fileName, mimeType }: BinaryDataQueryDto): Promise>>; getSigned(_: Request, res: Response, { token }: BinaryDataSignedQueryDto): Promise>>; private validateBinaryDataId; private setContentHeaders; }