import { FileBaseOptions, FileBase, Project } from 'projen'; interface SourceCodeOptions extends FileBaseOptions { codeBlock: string; } declare class SourceCode extends FileBase { private options; private startComment; constructor(project: Project, filePath: string, options: SourceCodeOptions); protected synthesizeContent(): string | undefined; } export { SourceCode, type SourceCodeOptions };