/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { QueryName, QueryParams } from './api.js'; export type Entry = { input: string; query: Q; modelNums?: number[]; copyAllCategories?: boolean; transform?: number[]; params?: QueryParams; }; export type LocalInput = { queries: Entry[]; output: string; binary?: boolean; asTarGz?: boolean; gzipLevel?: number; }[]; export declare function runLocal(input: LocalInput): Promise;