import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; type ResetResult = { deleted: boolean; }; export default class Reset extends ExecRenderBaseCommand { static description: string; protected authenticationRequired: boolean; protected exec(): Promise; protected render(): null; private tokenFileExists; } export {};