import type * as swc from '@swc/core'; import type { Block } from 'comment-parser'; import * as E from 'fp-ts/Either'; import type { Project } from './project'; import type { SourceFile } from './sourceFile'; export declare function findSymbolInitializer(project: Project, sourceFile: SourceFile, name: string | [string, string]): E.Either; export declare function resolveLiteralOrIdentifier(project: Project, sourceFile: SourceFile, expr: swc.Expression, comment?: Block): E.Either; //# sourceMappingURL=resolveInit.d.ts.map