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