/** * Maps an arrow key string to a logical expand direction, accounting for RTL * layout. Returns null for any key that does not correspond to an arrow key. */ export declare function expandDirectionFromKey(key: string, rtl: boolean): "up" | "down" | "start" | "end" | null;