import { ExportFormat } from "../../core/export/interfaces/export"; interface Props { filename: string; output: string; count: number; route: string; format: ExportFormat; } export declare function run({ route, count, filename, output, format }: Props): Promise; export {};