/** * Bidi character type detection * Port of bidi-js charTypes.js */ export declare const TYPES: Record; export declare const TYPES_TO_NAMES: Record; export declare const ISOLATE_INIT_TYPES: number; export declare const STRONG_TYPES: number; export declare const NEUTRAL_ISOLATE_TYPES: number; export declare const BN_LIKE_TYPES: number; export declare const TRAILING_TYPES: number; /** * Get the bidi character type for a character * @param char Character to check * @returns Bidi character type as a bitmask */ export declare function getBidiCharType(char: string): number; /** * Get the name of a bidi character type * @param char Character to check * @returns Bidi character type name (e.g., "L", "R", "EN", "AN", etc.) */ export declare function getBidiCharTypeName(char: string): string;