import type { SKYKOIConfig } from "../../config/config.js"; import { type GraphIdentity } from "../../infra/graph-access.js"; import type { AnyKoiTool } from "./common.js"; export declare function createGraphTool(opts?: { config?: SKYKOIConfig | null; }): AnyKoiTool; export declare function createGraphEditTool(opts?: { config?: SKYKOIConfig | null; }): AnyKoiTool; /** Both graph tools, for the koi tool list. */ export declare function createGraphTools(opts?: { config?: SKYKOIConfig | null; }): AnyKoiTool[]; export type { GraphIdentity };