import type { Project, SyntaxKind } from './ts-morph.ts'; import { type LiteralExpressionValue } from './resolve-expressions.ts'; /** Attempt to get a statically analyzable literal value for a file export. */ export declare function getFileExportStaticValue(filePath: string, position: number, kind: SyntaxKind, project: Project): Promise;