import { NVDA } from "./NVDA"; /** * [API Reference](https://www.guidepup.dev/docs/api/class-nvda) * * This object can be used to launch and control NVDA. * * Here's a typical example: * * ```ts * import { nvda } from "@guidepup/guidepup"; * * (async () => { * // Start NVDA. * await nvda.start(); * * // Move to the next item. * await nvda.next(); * * // Stop NVDA. * await nvda.stop(); * })(); * ``` */ export declare const nvda: NVDA; /** * [API Reference](https://www.guidepup.dev/docs/api/class-nvda) * * This object can be used to launch and control NVDA. * * Here's a typical example: * * ```ts * import { nvda } from "@guidepup/guidepup"; * * (async () => { * // Start NVDA. * await nvda.start(); * * // Move to the next item. * await nvda.next(); * * // Stop NVDA. * await nvda.stop(); * })(); * ``` */ type _NVDA = typeof nvda; export { _NVDA as NVDA }; export { keyCodeCommands as NVDAKeyCodeCommands } from "./keyCodeCommands";