import { ImportDeclarationStructure, OptionalKind, Project, SourceFile } from "ts-morph"; export declare class FileBuilder { private name; sourceFile: SourceFile; constructor(project: Project, path: string, name: string); setImport(importDeclaration: OptionalKind): void; getName(): string; getFilePath(): import("@ts-morph/common").StandardizedFilePath; toAst(): SourceFile; }