import type { string_markdown } from '../../types/string_markdown';
import type { string_name } from '../../types/string_name';
/**
 * Add or modify an auto-generated section in a markdown file
 *
 * @public exported from `@promptbook/markdown-utils`
 */
export declare function addAutoGeneratedSection(content: string_markdown, options: {
    readonly sectionName: string_name;
    readonly sectionContent: string_markdown;
}): string_markdown;
