import type { ExportsTreeNode } from '../graph-explorer/operations/build-exports-tree.ts'; export interface TraceMemberStatus { identifier: string; referenced: boolean; } export declare const formatTrace: (node: ExportsTreeNode, toRelative: (path: string) => string, isReferenced: boolean, memberStatuses?: TraceMemberStatus[]) => string;