export interface UpdateBodyResult { updated: boolean; body: string; } export declare function updateBody(oldBody: string, newGeneratedContent: string): UpdateBodyResult; export declare function createBody(text: string): string;