import type { LogType } from "@zombienet/utils"; import { Network } from "./network"; import { LaunchConfig } from "./configTypes"; export interface OrcOptionsInterface { monitor?: boolean; spawnConcurrency?: number; inCI?: boolean; dir?: string; force?: boolean; logType?: LogType; setGlobalNetwork?: (network: Network) => void; } export declare function start(credentials: string, launchConfig: LaunchConfig, options?: OrcOptionsInterface): Promise; export declare function test(credentials: string, networkConfig: LaunchConfig, cb: (network: Network) => void): Promise;