/** * Classify a function/method's visibility — exported, module-local, private. */ import ts from 'typescript'; import type { Visibility } from '@opensip-cli/graph'; /** * For a top-level function/variable: 'exported' if it has the export * modifier (or is part of an export specifier); 'module-local' * otherwise. Class members default to module-local unless explicitly * private. */ export declare function classifyVisibility(node: ts.Node): Visibility; //# sourceMappingURL=classify-visibility.d.ts.map