import type { Messages } from '@salesforce/core'; import type { Spinner } from '@salesforce/sf-plugins-core'; import type { EngineNotice } from '../port/executionEngine.js'; export type OutputSink = (text: string) => void; export declare const writeToStdout: OutputSink; export declare const renderOrgDetail: (detail: string) => string; export declare const reportEngineNotice: (notice: EngineNotice, spinner: Spinner, messages: Messages, sink?: OutputSink) => void;