import { BaseCommand } from '../../base/base-command'; export default class UtilTimestamp extends BaseCommand { static description: string; static strict: boolean; static args: { name: string; description: string; }[]; run(): Promise; }