import { ExportWorkflowsRequestDto } from '@n8n/api-types'; import { AuthenticatedRequest } from '@n8n/db'; import type { Response } from 'express'; import type { Readable } from 'node:stream'; import { N8nPackagesService } from './n8n-packages.service'; export declare class N8nPackagesController { private readonly packagesService; constructor(packagesService: N8nPackagesService); exportWorkflows(req: AuthenticatedRequest, res: Response, body: ExportWorkflowsRequestDto): Promise; }