/** * @athenna/core * * (c) João Lenon * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { REPLServer } from 'node:repl'; import { Command } from '#src/repl/helpers/Command'; export declare class Clean extends Command { static signature(): string; static help(): string; static action(this: REPLServer, property: string): void; }