import type { NodeListNode } from "../../shared/node-list-types.js"; import { type GatewayCallOptions } from "./gateway.js"; export type { NodeListNode }; export declare function listNodes(opts: GatewayCallOptions): Promise; export declare function resolveNodeIdFromList(nodes: NodeListNode[], query?: string, allowDefault?: boolean): string; export declare function resolveNodeId(opts: GatewayCallOptions, query?: string, allowDefault?: boolean): Promise;