import { ILock, ILogger } from '@emscripten-forge/mambajs-core'; import { Platform } from '@conda-org/rattler'; export interface ISolveOptions { ymlOrSpecs?: string | string[]; pipSpecs?: string[]; platform?: Platform; currentLock?: ILock; logger?: ILogger; nRetries?: number; } export declare const solveConda: (options: ISolveOptions) => Promise;