import { CodegenFile } from '@aphro/codegen-api'; export default class TypescriptFile implements CodegenFile { #private; readonly name: string; readonly isUnsigned: boolean; readonly nochange: boolean; readonly templates: { signature: string; startManual: string; endManual: string; }; constructor(name: string, contents: string, isUnsigned?: boolean, nochange?: boolean); get contents(): string; }