/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { Key } from '../contexts/KeypressContext.js'; export type { Key }; /** * Translates a Key object into its corresponding ANSI escape sequence. * This is useful for sending control characters to a pseudo-terminal. * * @param key The Key object to translate. * @returns The ANSI escape sequence as a string, or null if no mapping exists. */ export declare function keyToAnsi(key: Key): string | null;