import { type Instance, render } from "ink"; type InkRender = typeof render; type WithFullScreen = (...args: Parameters) => { instance: Instance; start: () => Promise; waitUntilExit: () => Promise; }; export declare const withFullScreen: WithFullScreen; export {};