export declare const startMarker = "[](start-of-generated-content)"; export declare const endMarker = "[](end-of-generated-content)"; export interface ParsedBody { prefix: string; generatedContent: string; suffix: string; } export declare function parseBody(body: any): ParsedBody | null;