import type { ReplOutput } from './repl-main';
/** Output that the user most likely wants on their clipboard as well. */
export declare const ReplClipboard: {
    readonly name: "ReplClipboard";
    /** Prints `text` and, if the output allows it, copies it to the clipboard and reports `note` afterwards. */
    readonly print: (this: void, output: ReplOutput, text: string, note: string) => Promise<void>;
};
