import { type Output } from './output.js'; /** * The output used by the CLI. * * Defaults to a `text` output bound to the real process streams, * so importing modules never write to stdout by accident. */ export declare const getOutput: () => Output; /** Replace the output, e.g., once flags are parsed, or from a test. */ export declare const setOutput: (nextOutput: Output) => void; /** Restore the default output. Intended for tests. */ export declare const resetOutput: () => void;