export interface ReadmeFile { path: string; content: string; size: number; } export declare class ReadmeRewriterUtils { private static readonly MAX_README_SIZE; private static readonly README_PATTERNS; static findReadmeFile(dirPath: string): Promise; static readReadmeFile(filePath: string): Promise; static backupReadmeFile(filePath: string): Promise; static restoreReadmeFile(filePath: string): Promise; static saveRewrittenReadme(originalPath: string, rewrittenContent: string, outputPath?: string): Promise; static extractOriginalUrlFromReadme(content: string): string | undefined; static formatFileSize(bytes: number): string; static generateGatewayUrl(agentId: string, baseUrl?: string): string; } //# sourceMappingURL=readme-rewriter.d.ts.map