import { IGetNodeListResponseData, IGetNodeListReqParams, IGetNodeDetailReqParams, IGetNodeDetailResponseData, ISearchNodeListReqParams, ISearchNodeListResponseData } from './interface'; import { Vika } from './apitable'; export declare class NodeManager { apitable: Vika; constructor(apitable: Vika); /** * Get the list of root nodes of the specified space stations. * @param param0 */ list(params: IGetNodeListReqParams): Promise>; /** * Get information about the specified node. */ get(params: IGetNodeDetailReqParams): Promise>; /** * Search Nodes. */ search(params: ISearchNodeListReqParams): Promise>; }