import { type BaseCommand } from '../base.js';
export interface OneShotCommand extends BaseCommand {
    close(): Promise<void>;
}
