import type { Command } from "../Command.js";
import { CommandRegistry } from "../CommandRegistry.js";
export declare class FileManagerCommands extends CommandRegistry {
    protected readonly _prefix = "file-manager";
    /**
     * Opens the local data file management page. Mobile only.
     *
     * @mobileOnly
     */
    get display(): Command;
    /**
     * Closes the local data file management page. Mobile only.
     *
     * @mobileOnly
     */
    get close(): Command;
}
