/**
 * Increase the level of all headings in the markdown content
 *
 * @example h1 -> h2, h2 -> h3, ...
 * @param content The markdown content
 * @returns The markdown with increased headings
 */
export declare function increaseHeadings(content: string): string;
