import type { LogType } from "@zombienet/utils";
import { Network } from "./network";
import { Client } from "./providers/client";
import { NodeMultiAddress, fileMap } from "./types";
import { Node, Parachain } from "./sharedTypes";
export declare const spawnNode: (client: Client, node: Node, network: Network, bootnodes: string[], filesToCopy: fileMap[], opts: {
    logType: LogType;
    inCI: boolean;
    monitorIsAvailable: boolean;
    userDefinedTypes?: any;
    local_ip?: string;
    jaegerUrl?: string;
}, parachain?: Parachain) => Promise<NodeMultiAddress>;
