/**
* @ignore
* @module
*/
/**
* Replace with in a Markdown content string.
* @param content - The Markdown content string to process.
* @returns The updated Markdown content string with replaced by .
*/
export declare function replaceAnchorIdWithName(content: string): string;
/**
* Replace with in a Markdown content string.
* @param content - The Markdown content string to process.
* @returns The updated Markdown content string with replaced by .
*/
export declare function replaceAnchorNameWithId(content: string): string;
/**
* For every Markdown file under a directory (recursively), replace with .
* @param dir - The directory to recursively process Markdown files in.
*/
export declare function replaceAnchorIdWithNameInMdFiles(dir: string): void;
/**
* If a directory has one and only one subdirectory, return its path; otherwise return undefined.
* @param dir - The directory to check for a single subdirectory.
* @returns The path to the single subdirectory, or undefined if there are zero or more than one subdirectories.
*/
export declare function getSingleSubdirectory(dir: string): string | undefined;
//# sourceMappingURL=api-docs-utils.d.ts.map