/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { EdgeData } from "../../types/types.js"; type ValidColorStrings = `#${number}` | `--${string}`; export declare function getGlobalColor(name: ValidColorStrings, defaultValue?: ValidColorStrings): number; export declare function inspectableEdgeToString(edge: EdgeData): string; export declare function edgeToString(edge: { from: string; to: string; out: string; in: string; }): string; export declare const DBL_CLICK_DELTA = 450; export {}; //# sourceMappingURL=utils.d.ts.map