import type { string_markdown } from '../../types/string_markdown';
/**
 * Change dash-like characters to regular dashes `-` -> `-` and remove soft hyphens
 *
 * Note: [🔂] This function is idempotent.
 * Tip: If you want to do the full cleanup, look for `humanizeAiText` exported `@promptbook/markdown-utils`
 *
 * @public exported from `@promptbook/markdown-utils`
 */
export declare function humanizeAiTextEmdashed(aiText: string_markdown): string_markdown;
