/** * Normalize text for identifier generation * Converts to lowercase, converts spaces to underscores, keeps only alphanumeric and underscores * @param text - Text to normalize * @returns Normalized text (ASCII alphanumeric and underscores only) */ export declare function normalizeText(text: string): string; /** * Normalize author name for identifier * @param name - Author name to normalize * @returns Normalized name (max 32 chars) */ export declare function normalizeAuthorName(name: string): string; /** * Create a title slug for identifier * @param title - Title to create slug from * @returns Title slug (max 32 chars) */ export declare function normalizeTitleSlug(title: string): string; //# sourceMappingURL=normalize.d.ts.map