import { VerbaTransportListenerStore } from '../types'; import { BaseTransportOptions } from './types'; /** * A type that represents an entity that is occupying the current (TTY) console output. * * This could be a progress bar, a spinner, etc. */ export type TtyConsoleOccupier = { interrupt: () => void; resume: () => void; destroy: () => void; }; export declare const useTtyConsoleOccupierRef: (transportOptions: BaseTransportOptions, listeners: VerbaTransportListenerStore) => import("../../util/types").MutableRef;