/**
 * One practical "don't vs do" pitfall item for Book language authoring.
 *
 * @private internal utility of `createStandaloneBookLanguageMarkdown`
 */
export type BookLanguageCommonPitfall = {
    /**
     * Short pitfall title.
     */
    readonly title: string;
    /**
     * Description of what to avoid.
     */
    readonly dont: string;
    /**
     * Practical corrective action.
     */
    readonly doInstead: string;
};
/**
 * Common anti-patterns with practical fixes.
 *
 * @private internal utility of `createStandaloneBookLanguageMarkdown`
 */
export declare const bookLanguageCommonPitfalls: ReadonlyArray<BookLanguageCommonPitfall>;
