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