/** * Convert a logical key to its physical key code for layout-independent matching * @param key - The logical key to convert * @returns The physical key code */ declare function keyToCode(key: string): string | undefined; export { keyToCode };