/** * Hides the on-screen keyboard, if it is currently visible. Does nothing if the keyboard is * not active. * @since Mini Apps v9.1 * @throws {FunctionNotAvailableError} The function is not supported * @throws {FunctionNotAvailableError} The environment is unknown * @throws {FunctionNotAvailableError} The SDK is not initialized * @example Using `.isAvailable()` * if (hideKeyboard.isAvailable()) { * hideKeyboard(); * } * @example Using `.ifAvailable()` * hideKeyboard.ifAvailable() */ export declare const hideKeyboard: import('../../wrappers/wrapSafe.js').SafeWrapped<() => void, true, never>;