/**
 * @license
 * Copyright (c) 2025 Handsoncode. All rights reserved.
 */
import { FunctionRegistry } from '../interpreter/FunctionRegistry';
import { Ast, RelativeDependency } from './';
export declare const collectDependencies: (ast: Ast, functionRegistry: FunctionRegistry) => RelativeDependency[];
